Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › Programming › Visual Basic Programming › [TuT]Your very own message spammer!

[TuT]Your very own message spammer!

Posts 1–6 of 6 · Page 1 of 1
FpsTibble
FpsTibble
[TuT]Your very own message spammer!
Visual basic Annoying message boxes! I'm too lazy to upload source code or screenshots, sorry...


This tutorial will teach you how to make a program that executes an infinite sum of "messageboxes"

Firstly open a new Visual Basic "Form project". Name it "Msg"
Drag and drop the "Timer" object from the "Components" section.


Now double click on the form its self to open up the source for the "Form1" object.


In the source enter the following text:
Timer1.Start()
Me.Hide()
Dim i As Integer


The source should now look like this:
Public Class Form1

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Timer1.Start()
Me.Hide()
Dim i As Integer
End Sub

Now go back to the "Form1"(design) screen and double click on "timer1":


And enter the following code:
Me.Hide()

For i = 1 To 10

MessageBox.show("Prank")
i = 1
Next

The "timer1" source code should look like this:
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
Me.Hide()

For i = 1 To 10

MessageBox.show("Prank")
i = 1
Next

End Sub
End Class

Now press the green Debug button or press "F5":
You will see lots of text boxes appear,to stop this press the "stop" debugging button...


The program is now complete!
To make a new full exe you have to "Build it",
to do this click on the "Build" text on the tool bar and click "Build Msg".
You can run the program in the following folder:
C:\Documents and Settings\James\My Documents\Visual Studio 2008\Projects\Msg\Msg\bin\Release

Now for some theory

" Timer1.Start()
Me.Hide()
Dim i As Integer"
"Timer1.Start ()" = This function loads up when the form loads and starts the Timer, incrementing every ms
"Me.hide()" = This function Makes the form appear invisible, thus as user wont see it."Me" refers to to object that
the source apply to, in this case the form.
"Dim i as integer" = This holds an integer value to 32 bytes to store positive and negative numbers, how ever Decimal point numbers are not supported by this "Data type", a "Long" value enables decimal points other wise known as "Floating point" numbers. "DIM" Stands for "Dimension", and is sued to declare the variable, a good way to remember it is to think "DoInMemory"
"i" is the name of the variable you want to store it as, and "As Integer" is used to tell the program what data type it is.

"
For i = 1 To 10

MessageBox.show("Prank")
i = 1
Next"

"For i = 1 to 10" = This is called a loop or an iteration, this basicly assignes the variable "i" the value of 1, and the text that follows is executed 10 times in this case :
MsgBox("Prank")
i = 1

Is executed 10 times, the first loop makes the variable "i" = 1, second loop makes the variable i = 2 until "i" = 10

"Next", just tells the program to increment i by 1.
"Messagebox.show ()" = a function that makes a messagebox, messagebox.show ("Prank") makes a messagebox show the text "Prank".
#1 · edited 16y ago · 16y ago
JI
JIGS4W
The font is so hard to see
#2 · 16y ago
ac1d_buRn
ac1d_buRn
iknow.
change the font?
#3 · 16y ago
FpsTibble
FpsTibble
Quote Originally Posted by ac1d_buRn View Post
iknow.
change the font?
Kk changed font, sorry...
#4 · 16y ago
FpsTibble
FpsTibble
Media player
[YOUTUBE]youtube.com/watch?v=dySNK-m2vTo[/YOUTUBE]
#5 · edited 16y ago · 16y ago
Zoom
Zoom
Double post ftw, watch out!
#6 · 16y ago
Posts 1–6 of 6 · Page 1 of 1

Post a Reply

Similar Threads

  • Making your own working spammerBy Arthur Ace in CrossFire Tutorials
    10Last post 15y ago
  • My Very Own List Of Warrock Accounts!By TryMe in WarRock - International Hacks
    44Last post 17y ago
  • [TUT] your chams will don't D/C..WORK's XP/VistaBy cornel1md in Combat Arms Europe Hacks
    34Last post 17y ago
  • (TUT)Your cod4 is lagging?Look here thanBy aprill27 in Call of Duty 4 - Modern Warfare (MW) Hacks
    5Last post 18y ago
  • My Very Own First Sig!!!By Jackal in Art & Graphic Design
    11Last post 20y ago

Tags for this Thread

#message#spammer#tutyour