Login Register






Thread Rating:
  • 0 Vote(s) - 0 Average


Auto-Typer/Spammer filter_list
Author
Message
Auto-Typer/Spammer #1
Setup;

Make the program look somewhat like the image.
(2 buttons, a textbox, and a timer.)

Spoiler:
[Image: uTA6n.png]

Then add the following to the code.
Code:
Public Class Form1

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
        Timer1.Stop()
    End Sub

    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
        Timer1.Start()
    End Sub

    Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs)

    End Sub

    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Timer1.Enabled = False
    End Sub

    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
        SendKeys.Send(TextBox1.Text)
        SendKeys.Send("{Enter}")
    End Sub

    Private Sub TabPage2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)

    End Sub
End Class

How to use it;



  1. Enter the desired text into the textbox.
  2. Click the "Start" Button. (Button1)
  3. When you want it to stop, click the "Stop" button. (Button2)
  4. To change the time between messages change the interval on the timer. (click the timer and edit into the box to the right. (shown below.))

Spoiler:
[Image: elWp7.png]

Reply

RE: Auto-Typer/Spammer #2
Wow HQ, Great share! I bet this will come to some good use someday or anyday Biggrin


Reply

RE: Auto-Typer/Spammer #3
(11-11-2012, 04:33 AM)#Sync# Wrote: Wow HQ, Great share! I bet this will come to some good use someday or anyday Biggrin

Great!

Tell me if there's any tutorial i should make.

Reply

RE: Auto-Typer/Spammer #4
Very HQ, thanks for sharing this bro
[Image: 57sQsY2.png]

Reply







Users browsing this thread: 1 Guest(s)