Couldn't you just make it to where like if you press a key, it will put the character of the key in an invisible textbox? then send the text in the textbox to your email or whatever?
ya i made one of those but i want to make a newer better one
18 June 2009 - 03:51 PM
Couldn't you just make it to where like if you press a key, it will put the character of the key in an invisible textbox? then send the text in the textbox to your email or whatever?
16 June 2009 - 07:08 PM
:/, that's a poor way of recording the keyboard, so I'm already out of ideas. :S
The better way is extremely well guarded...
16 June 2009 - 04:39 PM
That code isn't system wide automatically. You have to loop it in a timer, constantly.
Add a timer, put this code:For i = 1 To 255 result = 0 result = GetAsyncKeyState(i) If (result = -32767) Then TextBox1.Text = (TextBox1.Text + Chr(i)) End If Next i
in the timer.
21 May 2009 - 06:00 PM
21 May 2009 - 05:56 PM
Community Forum Software by IP.Board 3.4.6
Licensed to: Connor (iBotPeaches)