|
-
Aug 19th, 2008, 04:39 AM
#1
Thread Starter
Fanatic Member
buttonClicker
Hello,
I want to create a program for key pressing, but it doesn't work.
The program should press "F1" key every second or as I set it.
Private Sub CheckBox1_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckBox1.CheckedChanged
Do
If CheckBox1.Checked = False Then
Exit Do
End If
System.Windows.Forms.SendKeys.Send("{F1}")
Loop
End Sub
Any Ideas? Please
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|