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] - Reading Text & *Extra*

Red face[Tutorial] - Reading Text & *Extra*

Posts 1–4 of 4 · Page 1 of 1
guza44_44
guza44_44
[Tutorial] - Reading Text & *Extra*
Okay since I love ya guys so much :3 I wanted to share this with you, how to read text off of the web (and this actually works too)
there is another way for actual webpages but i dont feel like posting that too at the moment lol. Later i can show u guys how to read a post off of a website if you want

First thing:
is first, make a text document and add whatever text you want into it. then upload it onto the web using your own fps directory or any other way you can

second:
Make a new Project and Add these to it:
Webbrowser1
Textbox1 or label1
Button1

Click on the webbrowser and put the url to your text document (this will make it so when the application loads it will load that website), now just make the webbrowser hidden

go into the code of the button and add this code:
Code:
TextBox1.Text = WebBrowser2.Document.Body.InnerText
or
Code:
label1.Text = WebBrowser2.Document.Body.InnerText
*Extra Info*
Ever got pissed about those annoying script errors on your webbrowsers? well here is how to turn it off.

click on you webbrowser and go to ScriptErrorSuppressed And switch that to "True"
#1 · edited 16y ago · 16y ago
CoderNever
CoderNever
1. > Does this Read the source code or the plain text?
2. > If not source code how does it describe pictures?
#2 · 16y ago
T7
t7ancients
when I first got into computers and whatnot I messed with javascript and html. in javascript there's a class: document.body.innerHTML. So I'm just guessing this displays something similar. somebody try putting this code into a button and see what happens, it just came to me and i haven't tested it:
WebBrowser1.Document.Body.ContentEditable="true"
WebBrowser1.Document.Body.editMode="on"
that was something I found a while back that worked for manipulating html pages in javascript. was fun for me back then because I was dumb.

EDIT: oh i forgot, here's the javascript for it:
javascript:document.body.contentEditable="true";do cument.body.editMode="on"; void 0
try copy/pasting that into your address bar.
javascript:alert(document.body.innerHTML) <-- this one too. sorry, random memories of js...
#3 · edited 16y ago · 16y ago
guza44_44
guza44_44
this is from source, im going to try to figure out further more stuff later though
#4 · 16y ago
Posts 1–4 of 4 · Page 1 of 1

Post a Reply

Similar Threads

  • [Help] Problem reading text from a webpageBy Jason in Visual Basic Programming
    18Last post 16y ago
  • [Tutorial] Reading from the CMD lineBy shercipher in C++/C Programming
    7Last post 20y ago
  • [Help]VB Read text file[Solved]By mo3ad001 in Visual Basic Programming
    3Last post 16y ago
  • Should I release this tutorial? (read here)By 4thbattalion in Combat Arms Discussions
    12Last post 16y ago
  • [help]read text from an online .txt[Solved]By trevor206 in Visual Basic Programming
    10Last post 15y ago

Tags for this Thread

#extra#reading#text#tutorial