i want it to display something like (enter) instead of a character like
I hope you understand what i am asking!
Im using visual basic 2008
How do i make the ';enter'; button etc. not display a random character in a vb keylogger ?
I haven't used vb2008, but what you're asking should be fairly simple. You need to intercept the key before it's being logged. ie:
dim key_pressed as string
if key_pressed = chr(13) then
key_pressed = ';Enter';
endif
somewhere along those lines.. hard to be specific without seeing your code, but I'm sure you get the idea.
No comments:
Post a Comment