Author Topic: [Tutorial]How to Make Multy Auto Typer VB  (Read 2602 times)

Offline JokeBOx

  • Advanced Member
  • *
  • Topic Author
  • Posts: 206
  • Karma: +8/-27
  • HELLO!!!!!!!!!!!!!!!
  • Awards Winner of 1 Photoshop Challenge Contest [COMMON]
    • View Profile
    • Awards
[Tutorial]How to Make Multy Auto Typer VB
« 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


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!