Yoo..
aloha guys..
that's my first topic here ....
i wish u answer me fast
well.. i'm trying to make auto keyboard clicker
that's the code
it works perfectly i set the timer to 1000 ms ( 1 sec )
it presses F5 every 1 sec
Here goes the question
CAN I MAKE A TARGET ( PRESS F5 IN a specific PROCESS) :D
sorry for ma bad english
aloha guys..
that's my first topic here ....
i wish u answer me fast
well.. i'm trying to make auto keyboard clicker
that's the code
Code:
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Timer1.Start()
End Sub
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
SendKeys.Send("{F5}")
End Sub
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
Timer1.Stop()
End Sub
End Class
it presses F5 every 1 sec
Here goes the question
CAN I MAKE A TARGET ( PRESS F5 IN a specific PROCESS) :D
sorry for ma bad english