06-06-2011, 03:06 PM
(This post was last modified: 06-06-2011, 03:07 PM by AceInfinity.)
(03-27-2011, 06:41 AM)dudesons123 Wrote: You also can use a loop:
For intTeller As Integer = 1 To 100
MessageBox.Show("hello")
Next
That will only spam 100 times. You could define say:
Code:
RepeatN As Integer
Then make an input box for a user specified integer of the number of times to spam.
Of you could use an endless loop to continue spamming with something like:
Code:
Do While x = x
MsgBox("something")
x = x + 1
Loop
Think of it less about a spammer, and take my advice as more of a learning experience for loops.