URI:
   DIR Return Create A Forum - Home
       ---------------------------------------------------------
       3xtGamingCoding
  HTML https://3xtgamingcoding.createaforum.com
       ---------------------------------------------------------
       *****************************************************
   DIR Return to: Visual Basic
       *****************************************************
       #Post#: 5--------------------------------------------------
       [Tutorial] Auto Typer 
   DIR By: akimo360
       Date: November 25, 2011, 12:34 pm
       ---------------------------------------------------------
       Hello And Welcome. This tutorial is about how to make your very
       own auto typer. We hope you enjoy this tutorial and our future
       tutorials. Invite your friends and neighbors to our website for
       more tutorials, game play, and releases. Now to get started with
       the tutorial. Enjoy!!
       In this tutorial the required items are needed:
       -2 TextBoxes(Text, Interval)
       -Timer
       -2 Buttons(Start, Stop)
       Step 1.
       Put This Code Into Timer1. This types the content of TextBox1,
       then presses enter
       --- Code ---
       SendKeys.Send(TextBox1.Text)
       SendKeys.Send("{Enter}")
       --- End Code ---
       Step 2.
       Put this into your "Start" button. This gets the content of
       TextBox2 and sets it as the Timer's interval. Then it starts the
       Timer.
       --- Code ---
       Timer1.Interval = TextBox2.Text & "000"
       Timer1.Start()
       --- End Code ---
       Step 3.
       Put this into your "Stop" button. This stops the Timer.
       --- Code ---
       Timer1.Stop()
       --- End Code ---
       And Your Done! Check Out Your New Auto Typer. After Creating It
       Post Back Your Results. So we can all see how you did!
       *****************************************************
       Page 1 of 1