(adsbygoogle = window.adsbygoogle || []).push({});
Alright, first off create a new windows form/project.
Then add in 2 buttons, as well as a a text boxes, and a timer.
On the timer add this code
' TextBox1.Text is what text it is going to send
SendKeys.Send(TextBox1.Text)
SendKeys.Send("{Enter}")
Call the button1 ("start")
and
Button 2 ("stop")
On the button1/start button add this code
Timer1.Start
On the button2/stop button add this code
timer1.Stop
Adjust the speed of timer1 to your liking
You must login or register to view this content.
Uh, I typed this my self, I'll make it more well written in the future. Thank you..