-
KeyLogger Help
i'd like to create a KeyLogger that saves to a file, the keystrokes and the program/window changes, that a user does. i wanted to know if there's a better way to do this than using a timer and the GetAsyncKeyState API, i dont think the timer is efficient. Like is there something that u can do, like each time a Keyboard event happens.
THANKS
-
-
i heard that i could use WMI to do this, but i dont know anything about wmi, so i guess im gonna try to learn that. anyone have tips on WMI for me, that would be great ?
THANKS
-
Use a WH_KEYBOARD_LL hook...
-
thanks so i'll use that, but how do i use it? ive never done hooks before.
[Public Const WH_KEYBOARD_LL = 13]
do i use SendMessage() using WH_KEYBOARD_LL or with the WindowProc()? or how do i use it?
THANKS
-
i think i'm gonna use the EventVB Dll i saw in ur sig. its preety cool.
THANKS