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 › Recieve data

QuestionRecieve data

Posts 1–10 of 10 · Page 1 of 1
guza44_44
guza44_44
Recieve data
Okay i have seen some pretty similar things to this but not quite this......i was wondering if anyone know a code that makes it so a TextBox1.text equals online data like say for instance:
I have a text file on the internet that says "HELLO" (yes i have a text file in my website, so it is accessible)
and
I want the "HELLO" to appear inside of the textbox on my application

Anyone know at all?
#1 · 16y ago
-X
-XpliCitt-
Try this:

Apply a webbrowser to your application (preferably hidden), set it to navigate to your web page.
Code:
Webbrowser1.navigate="Your website URL"
Then:
Code:
TextBox1.Text = WebBrowser1.DocumentText
#2 · 16y ago
Katie_Perry
Katie_Perry
Thanks man.
#3 · 16y ago
guza44_44
guza44_44
ahh nice and smart thank you

bad thing is , it wont work lol
#4 · edited 16y ago · 16y ago
-X
-XpliCitt-
Quote Originally Posted by guza44_44 View Post
ahh nice and smart thank you

bad thing is , it wont work lol
Why won't it work?
#5 · 16y ago
Bombsaway707
Bombsaway707
Quote Originally Posted by -XpliCitt- View Post
Why won't it work?
Yes -Xplicitts- code is right...it should work
#6 · 16y ago
guza44_44
guza44_44
it says this:

Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META content="text/html; charset=windows-1252" http-equiv=Content-Type></HEAD>
<BODY><PRE>1</PRE></BODY></HTML>
all i want it to show the number "1" but it wants to show all the php and html code and idk why
#7 · edited 16y ago · 16y ago
-X
-XpliCitt-
Quote Originally Posted by guza44_44 View Post
it says this:

Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META content="text/html; charset=windows-1252" http-equiv=Content-Type></HEAD>
<BODY><PRE>1</PRE></BODY></HTML>
all i want it to show the number "1" but it wants to show all the php and html code and idk why
You can also just put the 1 in the header and use this:
Code:
WebBrowser1.DocumentTitle.ToString
#8 · 16y ago
CoderNever
CoderNever
Code:
Dim WebFile As String
        WebFile= "URLTOTEXTFILE"
        Dim request As System.Net.HttpWebRequest = System.Net.HttpWebRequest.Create(WebFile)
        Dim response As System.Net.HttpWebResponse = request.GetResponse()
        Dim sr As System.IO.StreamReader = New System.IO.StreamReader(response.GetResponseStream(), System.Text.Encoding.GetEncoding("windows-1252"))
        Textbox1.Text = sr.ReadToEnd()
#9 · 16y ago
User1
User1
Edit in Pure HTML and delete all that header shit and just type in what you want it to read instead.
#10 · 16y ago
Posts 1–10 of 10 · Page 1 of 1

Post a Reply

Similar Threads

  • Forum Data LossBy Dave84311 in News & Announcements
    9Last post 20y ago
  • FIles in /DataBy Waffles in WarRock - International Hacks
    4Last post 19y ago
  • wordfilter in data file(cusswords in warrock)By cjg333 in WarRock - International Hacks
    4Last post 19y ago
  • Type of data in VB2005By smartie in Visual Basic Programming
    2Last post 19y ago
  • [HELP] Data typeBy Koekenbakker in Visual Basic Programming
    3Last post 18y ago

Tags for this Thread

#data#recieve