Exclamationtut request warrock spammer

Posts 13 of 3 · Page 1 of 1
tut request warrock spammer
can somebody give me this tutorial
There is a section for Tutorial Requests...
Quote Originally Posted by Pixie View Post
There is a section for Tutorial Requests...
Lol, you posted a Tut Request in VB too.

On Topic:
Try This
1. Add a button called Start
2. Add button called stop
3. Add a timer
4. Add a TextBox

For the Start
Code:
Timer1.Start()
For Stop
Code:
Timer1.Stop()
For Timer
Change interval to 100
and add
Code:
 SendKeys.Send(textBox1.text)
        SendKeys.Send("{ENTER}")
If you wanna add hotkeys

Code:
Public Class Form1
    Protected Overrides Function ProcessDialogKey(ByVal keyData As System.Windows.Forms.Keys) As Boolean

        Select Case (keyData)
            Case Keys.F10
                Timer1.Start()
            Case Keys.F11
'This is where it gets kind of buggy. When I tested this, the Timer1.Stop didnt work.
                Timer1.Stop()
        End Select
        Return MyBase.ProcessDialogKey(keyData)
    End Function
Posts 13 of 3 · Page 1 of 1
This thread is closed for replies.

Similar Threads

Tags for this Thread

Need help?