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 › Stream Text From Website to Form [solved]

Stream Text From Website to Form [solved]

Posts 1–8 of 8 · Page 1 of 1
Dreamer
Dreamer
Stream Text From Website to Form [solved]
I was wondering how I was suppose to do this.
In a auto updater you would upload a versions text and the form checks if the program is out dated. I was wondering if there is a way to upload a text file online and whoever opens the form will be able to see the text on that file.

Another method that I perfer would be writing text on the website and it just appears on the form textbox.

Thanks
#1 · 15y ago
Jason
Jason
[highlight=vb.net]
Using wClient As New Net.WebClient
Dim downloadedString As String = wClient.DownloadString("yourtxtfilehere")
'//do something with the string here.
End Using
[/highlight]
#2 · 15y ago
Dreamer
Dreamer
How would I connect the web to a certain web page?
#3 · 15y ago
TH
TheBest-1337
What do you mean? If you want a text of the website to show on to a textbox, here's the code:

Code:
Dim client As WebClient = New WebClient()
    Dim download As String = client.DownloadString("http://www.google.com")
TextBox1.Text = download
#4 · 15y ago
master131
[MPGH]master131
Forgot to dispose the WebClient.
#5 · 15y ago
Dreamer
Dreamer
Uhmm thanks. I got my question answered This thread may be closed now.
#6 · 15y ago
Jason
Jason
Marked solved.
#7 · 15y ago
freedompeace
freedompeace
Quote Originally Posted by master131 View Post
Forgot to dispose the WebClient.
The GC exists for a reason. :P
#8 · 15y ago
Posts 1–8 of 8 · Page 1 of 1

Post a Reply

Tags for this Thread

None