| View previous topic :: View next topic |
| Author |
Message |
Serge Professional Member


Joined: 04 Mar 2002 Posts: 1480 Location: Australia
|
Posted: Sat Mar 09, 2002 8:00 am Post subject: key logging |
|
|
Are there any extension dll's i can use to write a program that will function as a key logger?
thanks in advance
Serge _________________
|
|
| Back to top |
|
 |
Skit3000 Admin Team

Joined: 11 May 2002 Posts: 2166 Location: The Netherlands
|
Posted: Fri Jul 26, 2002 2:03 pm Post subject: |
|
|
Maybe with HOTKEY.DLL which is in vdsdll3.dll...
Just get the pressed key and send it to the opened window...
Example: (i don't know the exact function/command names)
| Code: |
:loop
%pressedkey = @dll(hotkey,all)
if @not(@null(%%pressedkey))
window send,@winactive(I),%%pressedkey
%%keylog = %%keylog%%pressedkey
end
goto loop
|
|
|
| Back to top |
|
 |
Serge Professional Member


Joined: 04 Mar 2002 Posts: 1480 Location: Australia
|
Posted: Thu Aug 01, 2002 11:48 am Post subject: |
|
|
thanks for that - i'll check it out
Serge _________________
|
|
| Back to top |
|
 |
|