My First Visual Basic's Program.
This is one of my first programs made using Visual Basic.
I know it's not much of a big deal but I though i should share it and start contributing to the community with this.

VirusTotal Scan.
Thank you for your time 
I know it's not much of a big deal but I though i should share it and start contributing to the community with this.

VirusTotal Scan.
Code:
Public Class Form1
Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
spammer.Interval = interval.Text
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Timer1.Enabled = True
End Sub
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
Timer1.Enabled = False
spammer.Interval = False
End Sub
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
spammer.Enabled = True
End Sub
Private Sub spammer_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles spammer.Tick
SendKeys.Send(Message.Text & "{ENTER}")
End Sub
End Class

SP Spammer.rar

