[VB.NET] Auto Typer 07-10-2013, 07:32 AM
#1
What you will need for it:
1. 2X Buttons (Start,Stop)
2. Timer
3. TextBox
4. 3X Labels
5. NumericUpDown
It should look something like this:
Change the names of these:
Label1 = Text here
Label2 = Spaming per
Label3 = Seconds
Button1 = Start
Button2 = Stop
![[Image: 1331158372.jpg]](http://slike.milf-hosting.info/images/1331158372.jpg)
Then click on timer that you have already put,and change interval from 100 to "1000".
![[Image: 1331158401.jpg]](http://slike.milf-hosting.info/images/1331158401.jpg)
And now its time to add some codes.
In the button1(Start) add:
In the button2(Stop) add:
In the timer add:
1. 2X Buttons (Start,Stop)
2. Timer
3. TextBox
4. 3X Labels
5. NumericUpDown
It should look something like this:
Change the names of these:
Label1 = Text here
Label2 = Spaming per
Label3 = Seconds
Button1 = Start
Button2 = Stop
![[Image: 1331158372.jpg]](http://slike.milf-hosting.info/images/1331158372.jpg)
Then click on timer that you have already put,and change interval from 100 to "1000".
![[Image: 1331158401.jpg]](http://slike.milf-hosting.info/images/1331158401.jpg)
And now its time to add some codes.
In the button1(Start) add:
Code:
Timer1.Interval = NumericUpDown1.Value * 1000
Timer1.Start()
In the button2(Stop) add:
Code:
Timer1.Stop()
In the timer add:
Code:
SendKeys.Send(TextBox1.Text)
SendKeys.Send("{Enter}")
![[Image: xlbdwZT.png]](http://i.imgur.com/xlbdwZT.png)