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 › [Tutorial] Make a Splash Screen

Arrow[Tutorial] Make a Splash Screen

Posts 1–5 of 5 · Page 1 of 1
Kung Fu Penguin31
Kung Fu Penguin31
[Tutorial] Make a Splash Screen
In this tutorial i will teach you how to make a splash screen for your visual basics applications.

This is how it will work:
the user will start the program , and the splash will pop up, it will wait 3 seconds and start the program.

Procedure
ok so,
make a new form for your splash screen,
to do this: right click the project explorer>>add>>Form

Put whatever you want on it , eg."Welcome".

Go to properties and set "Border style" to "none" like so..


next make a timer and 2 labels.

Timer Properties
set the interval to "1000"
make sure it is enabled.


Label Properties


set label1's caption to "Starting in:"

please position both labels beside each other. like so..


now here comes the code....

Use this code for the timer:
Code:
'Kung fu penguin's splash screen
'countdown

If Label2.Caption = "0" Then
Form1.Hide ' hide the splash screen
form2.Show 'show your main program

Else
Label2.Caption = Label2.Caption - 1 ' if it isn't zero then minus one.
End If
and also put this in "Form_Load()"
Code:
Label2.Caption = "3" ' whatever you want to start the countdown from.
Optional Tip
You could also make those two labels transparent so the user cant see the countdown.
to do this ... go to the properties for the label and change "Visible" to "False".

Change Startup Form

If you made the form for your hack first, that will be the thing that starts up first, you want to change it so your splash screen starts up first. To do this simply go to:
Project(located at the top tool bar)>>Project1 Properties ("project 1" is the name of your project) once you have clicked that:



CONCLUSION
thanks for reading my tutorial. Please post any problems you have , and i will be happy to help

if you use my tutorial, please thank me
or add to my reputation,
#1 · 18y ago
castaway
castaway
that was hard *uhum*
XDD!
#2 · 18y ago
Kung Fu Penguin31
Kung Fu Penguin31
WHAT DOES "xd" ACTUALLY MEAN ?

btw thanks for the "thanks"
#3 · 18y ago
castaway
castaway
like a smiley -.-
xD
;D
XD
like i was just jokin
#4 · 18y ago
JA
jaqq3000
This is good for somebody.
#5 · 18y ago
Posts 1–5 of 5 · Page 1 of 1

Post a Reply

Similar Threads

  • [TUTORIAL] Make flash games full screenBy treeham in Visual Basic Programming
    7Last post 16y ago
  • [TUTORIAL] How to customize lobby images and splash screen!By twamp22 in Alliance of Valiant Arms (AVA) Hacks & Cheats
    30Last post 16y ago
  • Video tutorial: Making WarRock hack in Visual BasicBy Darky in Visual Basic Programming
    5Last post 17y ago
  • [Video tutorial] Make your own css cheatsBy seren1ty in CounterStrike (CS) 1.6 Hacks / Counter Strike: Source (CSS) Hacks
    6Last post 19y ago
  • [Tutorial] Make Window Always On topBy blipi in Visual Basic Programming
    3Last post 18y ago

Tags for this Thread

None