-
[Help]Keyhook Backspace
I need a little help with my backspace character on my keyhooks. I can get every key working except backspace and that key is frequently used to trigger events.
Right now I have
Code:
Case 8 'backspace keycode
Return ControlChars.Back 'returns a character that looks like []
Anybody know how I can get it to return by deleting a previous character?
-
And...bump. I need this answered asap.
-
Use my API?
[php]
Public Const vk_backspace = &H8
[/php]
What you looking for ? Cause that should work. Hooks API do not require additional code, the function remains static unless assigned a new function.
Make sense?