![]() |
|
Auto-Typer/Spammer - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Coding (https://sinister.ly/Forum-Coding) +--- Forum: Visual Basic & .NET Framework (https://sinister.ly/Forum-Visual-Basic-NET-Framework) +--- Thread: Auto-Typer/Spammer (/Thread-Auto-Typer-Spammer) |
Auto-Typer/Spammer - Logical - 11-11-2012 Setup; Make the program look somewhat like the image. (2 buttons, a textbox, and a timer.) Spoiler:![]() 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 ClassHow to use it;
Spoiler:![]() RE: Auto-Typer/Spammer - +Respawn - 11-11-2012 Wow HQ, Great share! I bet this will come to some good use someday or anyday
RE: Auto-Typer/Spammer - Logical - 11-11-2012 (11-11-2012, 04:33 AM)#Sync# Wrote: Wow HQ, Great share! I bet this will come to some good use someday or anyday Great! Tell me if there's any tutorial i should make. RE: Auto-Typer/Spammer - Falcon - 11-11-2012 Very HQ, thanks for sharing this bro |