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 › Malwarebytes progressbar

ArrowMalwarebytes progressbar

Posts 1–11 of 11 · Page 1 of 1
KingX735
KingX735
Malwarebytes progressbar
Hello there, here is my new release, I loved the progressbar of Malwarebytes Anti-malware, so I wanted to re-create it.

Preview ( sorry for the bad quality ) :



Thanks to HawkHF for his ' CodeToImage' function, get the progressbar here :

http://pastebin.com/3mMqShj2

Example of use :

Code:
Private Sub Start_Click(sender As Object, e As EventArgs) Handles Start.Click
      Timer1.Enabled = True
    End Sub

    Private Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick

      If Not Progress1.Value = Progress1.Maximum Then
      Progress1.Value += 1
      End If

      If Progress1.Value = Progress1.Maximum Then
      If Not Progress2.Value = Progress2.Maximum Then
      Progress2.Value += 1
      End If
      End If

      If Progress2.Value = Progress2.Maximum Then
      If Not Progress3.Value = Progress3.Maximum Then
      Progress3.Value += 1
      End If
      End If

      If Progress3.Value = Progress3.Maximum Then
      If Not Progress4.Value = Progress4.Maximum Then
      Progress4.Value += 1
      End If
      End If

    End Sub
#1 · edited 11y ago · 11y ago
WE
WereGoinOnATrip
Nice, looks cool.
#2 · 11y ago
ED
Eddington
That looks really clean but did you just use AeroRev9's code? Also what is going on with the first couple conditional statements. Are those hashes?
#3 · 11y ago
KingX735
KingX735
Quote Originally Posted by Eddington View Post
That looks really clean but did you just use AeroRev9's code? Also what is going on with the first couple conditional statements. Are those hashes?
I'm AeroRev9, lol. There are multiple controls, it's not 1 control combined, that's why when the first progressbar reach his maximum value, the second one will be activated. I added events so you can enable the second progressbar when the first one is finished anyway.
#4 · 11y ago
ED
Eddington
Oh cool I see your sig now. I know with .NET and c# you can utilize a progress bar class that can look really nice but I haven't seen it in VB.
#5 · 11y ago
FW
fwsefwsgrgwhergr
Damn thats sexy
#6 · 11y ago
**Seals**
**Seals**
This is reaaallly good.
#7 · 11y ago
Hitokiri~
Hitokiri~
Damn, great idea. I'll port this to Qt.
#8 · 11y ago
dllbaseII
dllbaseII
This is really good. I would like to know how the progress of the bar could follow a conection status... thank you
#9 · 11y ago
KingX735
KingX735
Quote Originally Posted by dllbaseII View Post
This is really good. I would like to know how the progress of the bar could follow a conection status... thank you
Well, you'll need to report progress to the progress bar.
eg : downloading a file, use WebClient.DownloadFileAsync, and report download progress.
#10 · 11y ago
RA
Raydenman
Quote Originally Posted by Eddington View Post
That looks really clean but did you just use AeroRev9's code? Also what is going on with the first couple conditional statements. Are those hashes?
Those strings are only sequences in Base64; (CodeToImage(GetBase64StringIcon(ProgressType.Max) gets the file by the enumerator.
The sequence string in base 64 is the information content, the rest is the classic ovveriding of the methods of the class Control
#11 · 11y ago
Posts 1–11 of 11 · Page 1 of 1

Post a Reply

Similar Threads

  • [Free]Malwarebytes' Anti-Malware[Free]By PuRe in Anti-Malware
    1Last post 17y ago
  • How to make a simple progressbarBy Dark_Goliath in Visual Basic Programming
    7Last post 16y ago
  • [Tutorial] Intro to ProgressBars and TimersBy scimmyboy in Visual Basic Programming
    12Last post 16y ago
  • [Help]Progressbar[Solved]By Shocker2010 in Visual Basic Programming
    2Last post 16y ago
  • [Help] Progressbar with themeBy Cryptonic in Visual Basic Programming
    1Last post 16y ago

Tags for this Thread

#aerorev9#malwarebytes#progressbar#visual basic