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 › [Help]Click Image Button[Solved]

[Help]Click Image Button[Solved]

Posts 1–13 of 13 · Page 1 of 1
PP
ppl2pass
[Help]Click Image Button[Solved]
How can you click this button on a website.


Code:
<input type="image" title="Confirm" alt="Confirm" src="/images/common/btn_confirm.gif"/>
#1 · 16y ago
NextGen1
NextGen1
[php]
WebBrowser1.Document.GetElementById("confirm").Inv okeMember("submit")
[/php]

In some case when a ID isn't available You can use forms

' If it's first form on site

[php]
Webbrowser1.document.forms(0).submit
[/php]

'If it's second form on site

[php]
Webbrowser1.document.forms(1).submit
[/php]

#2 · edited 16y ago · 16y ago
PP
ppl2pass
yah there is no id avaliable. checked the whole source.

how do you use a form
#3 · 16y ago
NextGen1
NextGen1
literary just do this

Webbrowser1.document.forms(0).submit

or this

Webbrowser1.document.forms(1).submit
#4 · 16y ago
PP
ppl2pass
wat do you mean by form.

btw when i entered:

Webbrowser1.document.forms(0).submit

into vb.net

it says submit is not a member.
#5 · edited 16y ago · 16y ago
NextGen1
NextGen1
Im sorry

[php]
WebBrowser1.Document.Forms(1).InvokeMember("submit ")
[/php]


Forms represents a form element on as site, sites can have numerous 'Forms"



#6 · edited 16y ago · 16y ago
PP
ppl2pass
yes thank you. it worked.

btw do you know how to always click yes on security information.
It says this page contains both secure and non secure items. Do you want to display the nonsecure items.

It always popup.
#7 · 16y ago
NextGen1
NextGen1
Yes

E.Cancel suppresses messages ,
#8 · 16y ago
PP
ppl2pass
can you give me full code plz.

nvm. found it

WebBrowser1.ScriptErrorsSuppressed = True

btw is this a good way to make a birthday cracker..
#9 · edited 16y ago · 16y ago
NextGen1
NextGen1
I can give you my code, if you feel like adding numerous proxy's you can have it, it's a console application

Bday Recovery
#10 · 16y ago
PP
ppl2pass
im trying to make this for freestyle.

and right now this is what i am thinking to do.
1) insert password in textbox in webbrowser
2) insert birthday
3) please confirm
4) please enter (pop up saying information is incorect for the website)
5) repeat.
#11 · 16y ago
MvRouC12
MvRouC12
This looks solved. lol
#12 · 16y ago
Invidus
Invidus
Yes its solved, thats why it has [solved] tags on it. But it's kept open in case its useful.
#13 · 16y ago
Posts 1–13 of 13 · Page 1 of 1

Post a Reply

Similar Threads

  • [Help]Open link click of button[Solved]By iFrank1 in Visual Basic Programming
    7Last post 16y ago
  • [Help]Treeview Search Button[Solved]By ModelCookie2 in Visual Basic Programming
    6Last post 15y ago
  • Open a program when I click a button [solved]By Sprite in Visual Basic Programming
    10Last post 15y ago
  • [help]clicking on a webbrowser[Solved]By trevor206 in Visual Basic Programming
    10Last post 16y ago
  • [Help] Hide Button [Solved]By Hahne in Visual Basic Programming
    3Last post 16y ago

Tags for this Thread

None