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 › Visual Output.

Visual Output.

Posts 1–4 of 4 · Page 1 of 1
Renamon Toast Crunch
Renamon Toast Crunch
Visual Output.
Im trying to figure out how to make a visual output (i dont know what to call it) so like instead of a progress bar you see a text box that is populated with each step the program is doing and the completion rate. So like when you click on more info when your installing something and it shows you the output, line by line. What is this called?
#1 · 13y ago
Blubb1337
Blubb1337
Define a string variable and modify it after certain code being executed?
#2 · 13y ago
Renamon Toast Crunch
Renamon Toast Crunch
Quote Originally Posted by Blubb1337 View Post
Define a string variable and modify it after certain code being executed?
No, like in this video when he clicks on show Details. It visually shows you what is happening. At the 1 Min 47 Second Mark.
#3 · edited 13y ago · 13y ago
SW
swiftyspiffy
Alright, I see what you want to achieve. So given you already have a textbox (or richtextbox, probably better as far as formatting goes), you will probably want to write a method you can call whenever you want to append the rich/textbox.

To do this, a simple method could be:

Code:
Private Sub Report(ByVal data As String)
        RichTextBox1.AppendText(String.Format("{0}{1}", vbNewLine, data))
End Sub
Then whenever you want to add a line to your "visual output", or log, simply call the function with the appropriate data as the parameter or argument, like so:

Code:
Report("Loading has begun, 0%")
#4 · 13y ago
Posts 1–4 of 4 · Page 1 of 1

Post a Reply

Similar Threads

  • Writing your own Visual Basics (v5 or v6) TrainerBy TheRedEye in Game Hacking Tutorials
    29Last post 12y ago
  • Packets & Visual BasicBy BadBob in Hack Requests
    5Last post 20y ago
  • [Help] Atom API with Visual Basic 6.0 or .NETBy Bull3t in Visual Basic Programming
    5Last post 20y ago
  • problem with the visual basic tutBy Elliwood in WarRock - International Hacks
    5Last post 19y ago

Tags for this Thread

None