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 › [Help] Hide Button [Solved]

[Help] Hide Button [Solved]

Posts 1–4 of 4 · Page 1 of 1
Hahne
Hahne
[Help] Hide Button [Solved]
ahh fuck need help again how do i add a hide button to hide the program or just put it to toolbar
#1 · 16y ago
Jason
Jason
First, add a NotifyIcon to your form.

then add this:

[php]

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

NotifyIcon1.Icon = Me.Icon
NotifyIcon1.Visible = True
NotifyIcon1.ShowBalloonTip(3000, "Im still running!", "Double click this icon to bring me back", ToolTipIcon.None)
Me.Hide()



End Sub

Private Sub NotifyIcon1_MouseDoubleClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles NotifyIcon1.MouseDoubleClick

Me.Show()
NotifyIcon1.Visible = False

End Sub[/php]

And voila, you have a notify icon and your form disappears.
#2 · 16y ago
Hahne
Hahne
yes good thanks
#3 · 16y ago
Jason
Jason
Quote Originally Posted by Hahne View Post
yes good thanks
No problemo!
#4 · 16y ago
Posts 1–4 of 4 · Page 1 of 1

Post a Reply

Similar Threads

  • [Help] Movable Buttons[Solved]By omghacker in Visual Basic Programming
    10Last post 15y ago
  • [Help]Click Image Button[Solved]By ppl2pass in Visual Basic Programming
    12Last post 16y ago
  • [Help]Change Button Text[Solved]By [PA]nts in Visual Basic Programming
    7Last post 16y ago
  • [Help]Open link click of button[Solved]By iFrank1 in Visual Basic Programming
    7Last post 16y ago
  • [Help]Treeview Search Button[Solved]By ModelCookie2 in Visual Basic Programming
    6Last post 15y ago

Tags for this Thread

None