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 › C++/C Programming › C# Dealing with webbrowser images help.

C# Dealing with webbrowser images help.

Posts 1–4 of 4 · Page 1 of 1
Calebb
Calebb
C# Dealing with webbrowser images help.
Code:
private void button1_Click(object sender, EventArgs e)
        {
            webBrowser1.Document.GetElementById("txtAccountId").SetAttribute("value", textBox1.Text);
That's how you set the value on a webbrowser for a textfield(We'll say a account ID) whenever your making a bot or whatever.
What I can't figure out, which I'll probably get flamed for it. Is how to convert a image, or not convert but display the image off of the webbrowser onto a picturebox.
Just using this as an example so you can understand what I'm saying more.
Nexon Passport Sign-Up
For example, How would I display the captcha onto a picturebox?
Thanks in Advance,
Caleb.
#1 · 16y ago
Hell_Demon
Hell_Demon
whats up with all newfags thinking they get flamed for posting random questions? o__O

Code:
HtmlElementCollection elementz = webBrowser1.Document.GetElementsByTagName("img");
asumin their using img ofcourse, dont know what other methods those webguys have to display pictures, then all you have to do it parse the stuff inside:

Code:
for (int i = 0; i < elementz.Count - 1; i++)
{
    if (elementz[i].InnerHtml.ToString().Contains("src"))
edit: figure the rest out yourself(like parsing src="whateverishere") and loading the picture
#2 · 16y ago
why06
why06
Quote Originally Posted by Hell_Demon View Post
whats up with all newfags thinking they get flamed for posting random questions? o__O
Hmmmm.... I wonder who could have caused them to think that.... ;l



But in all seriousness, what is this "img"/"src" stuff? Like where is it in the web page?
#3 · edited 16y ago · 16y ago
Calebb
Calebb
Not a new fag, other account just got banned. Been here since '08. I just know the people at MPGH. They flame. For no reason.
EDIT: at why06
Code:
HtmlElementCollection elementz = webBrowser1.Document.GetElementsByTagName("img");
If your talking about that, "img" is what the html document refers to the image by.
#4 · 16y ago
Posts 1–4 of 4 · Page 1 of 1

Post a Reply

Similar Threads

  • i need some help dealing with warrock pointersBy shakib in Hack Requests
    1Last post 19y ago
  • help with a image signatureBy bzo778 in Programming Tutorials
    5Last post 17y ago
  • [Help] Dealing with pointers from a dllBy ctpsolo in C++/C Programming
    11Last post 16y ago
  • Help with no imageBy PID3RMAN in Combat Arms Coding Help & Discussion
    8Last post 15y ago
  • [Help]Proxy With WebBrowser[Solved]By ppl2pass in Visual Basic Programming
    1Last post 16y ago

Tags for this Thread

None