im normally not one to spoon feed but here
Create a new VB project and add the following items
* 3 Textboxes
* 2 buttons
*1 Timer
name buttons Start and Stop
Button 2 is Stop
and here is the code for it to work right
just Highlight ur code hit Delete then copy and paste this code below
Code:
Public Class Form1
Dim SpamProgram As Integer
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Timer1.Interval = TextBox3.Text
End Sub
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
SendKeys.Send(TextBox2.Text)
SendKeys.Send("{enter}")
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
SpamProgram = Shell(TextBox1.Text, AppWinStyle.NormalFocus)
AppActivate(SpamProgram)
Timer1.Start()
End Sub
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
Timer1.Stop()
End Sub
End Class
Seriously though Read up on VB its easy to do this task and its really the simpliest thing to create
the way this works is you enter a application name
example: notepad.exe
enter text into box then choose a seconds 300 is normally good its in miliseconds
then hit start and it opens up notepad.exe and starts spamming it
Give Credit and Thanks