Support Forums
[TuT] VB6 Message Box Spammer [TuT] - Printable Version

+- Support Forums (https://www.supportforums.net)
+-- Forum: Categories (https://www.supportforums.net/forumdisplay.php?fid=87)
+--- Forum: Coding Support Forums (https://www.supportforums.net/forumdisplay.php?fid=18)
+---- Forum: Visual Basic and the .NET Framework (https://www.supportforums.net/forumdisplay.php?fid=19)
+---- Thread: [TuT] VB6 Message Box Spammer [TuT] (/showthread.php?tid=17370)

Pages: 1 2 3 4


RE: [TuT] VB6 Message Box Spammer [TuT] - HakkuR* - 03-26-2011

Another thing why are you trashing my thread yall are acting like I am trying to harm people stop 2 staring stuff, OK its been up for hours and its not closed so obviously its not hurting anything. Thank you infinity very much its a PRANK it does one thing gets laughs. I am a well known Hackforums member I have no need to harm people ok. Please stop 1 staring my thread and trashing it.


RE: [TuT] VB6 Message Box Spammer [TuT] - Resistance - 03-26-2011

(03-26-2011, 06:03 PM)HakkuR* Wrote: Another thing why are you trashing my thread yall are acting like I am trying to harm people stop 2 staring stuff, OK its been up for hours and its not closed so obviously its not hurting anything. Thank you infinity very much its a PRANK it does one thing gets laughs. I am a well known Hackforums member I have no need to harm people ok. Please stop 1 staring my thread and trashing it.

Bro the 1 staring wasn't me but sorry to hear that. I'll stop since you asked nicely, (I think.)


RE: [TuT] VB6 Message Box Spammer [TuT] - Solidus - 03-26-2011

http://spam.abuse.net/faq/


RE: [TuT] VB6 Message Box Spammer [TuT] - SeePlusPlus - 03-26-2011

I have been saying it's nothing malicious this whole time...


RE: [TuT] VB6 Message Box Spammer [TuT] - Nick - 03-26-2011

Thats a pretty nice tutorial right their! But can't this also be done in a .bat form? I think I remember doing something like this and using either "loop", "goto x", "repeat", ETC.


RE: [TuT] VB6 Message Box Spammer [TuT] - Modestep - 03-27-2011

You also can use a loop:

For intTeller As Integer = 1 To 100
MessageBox.Show("hello")

Next


RE: [TuT] VB6 Message Box Spammer [TuT] - AceInfinity - 03-27-2011

(03-26-2011, 07:21 PM)SeePlusPlus Wrote: I have been saying it's nothing malicious this whole time...

We actually got him to unlock it with just the right amount of luck lol. Fortunately he was generous enough to agree that it shouldn't be breaking the rules. You'd have to use this code as a snippet in another project to have a chance of using it as something malicious in my opinion. But just this code by itself won't do anything harmful.


RE: [TuT] VB6 Message Box Spammer [TuT] - USN - 06-06-2011

(03-26-2011, 04:39 PM)SeePlusPlus Wrote: "this kind of talk"
This isn't anything? This is a prank, not a freakin virus.

This is a virus:

That indeed is one its also jailtime possible. lol


RE: [TuT] VB6 Message Box Spammer [TuT] - The-One - 06-06-2011

Why don't put it in a loop. Saves a lot of coding work.


RE: [TuT] VB6 Message Box Spammer [TuT] - AceInfinity - 06-06-2011

(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.