LagAbuse.com

Unofficial Section => Programming => Topic started by: JokeBOx on February 06, 2012, 10:23

Title: [Tutorial]How to Make Multy Auto Typer VB
Post by: JokeBOx on February 06, 2012, 10:23
Ok, GUys i will tell/learn you how to make multy auto-typer in VIsual Basic..

Name the form Multi Auto Typer
Add 2 check boxes, 2 text boxes, and 3 buttons.
Also drag a timer on to the form to add a timer.

Next double click on start and type this in

timer1.start()

Then double click on Stop and add this

timer1.stop()

After that double click on end and type this

close()

OK guys, now the buttons are coded, we need to code timers..

Duble click on Timer1, and add this code:

If CheckBox1.Checked = True Then
            On Error Resume Next
            SendKeys.Send(TextBox1.Text)
            On Error Resume Next
            SendKeys.Send("{Enter}")
        End If
        If CheckBox2.Checked = True Then
            On Error Resume Next
            SendKeys.Send(TextBox2.Text)
            On Error Resume Next
            SendKeys.Send("{Enter}")
        End If
IT Should look like this
(http://i43.tinypic.com/20ts74j.png)

Then adjust however you want your layout to look like locking the form in fixed single and setting minimize and maximize to false.
And debug and test it out!

GOOD LUCK!