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 › [Request] Filling In Webboxes with Information Through Visual Basic

[Request] Filling In Webboxes with Information Through Visual Basic

Posts 1–5 of 5 · Page 1 of 1
CoderNever
CoderNever
[Request] Filling In Webboxes with Information Through Visual Basic
I want to be able to enter information in a textbox in my program and have it fill in the infomation a web application. please help Thank you
#1 · 16y ago
Zoom
Zoom
Make a
Code:
sendkeys.send("{KEYS}")
should be the easy one.... Or make your own webbrower with auto fill!
#2 · 16y ago
CoderNever
CoderNever
I Found Out How
I found out how so Just Incase anyone wants to know....I Used this Code

Note : When you See ("Green") You Replace , Such As I would replace ID with my variable

Code:
Public Class Form1

    Inherits System.Windows.Forms.Form
    Dim asd

    Private Function GetBtnByValue(ByVal value As String) As HtmlElement
        For Each d As HtmlElement In Webbrowser1.Document.GetElementsByTagName("input")
            'If (d.GetAttribute("type").ToLower = asd.Text Or d.GetAttribute("type").ToLower = "submit") Then
            If (d.GetAttribute("type").ToLower = "submit") Then
                If (d.GetAttribute("value") = value) Then
                    Return d
                    Exit For
                End If
            End If
        Next
    End Function

    

    Private Sub Button1_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        WebBrowser1.Document.GetElementById("ID").SetAttribute("value", TextBox1.Text())
        

        'GetBtnByValue("What the Button Says").InvokeMember("Click")



    End Sub
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        WebBrowser1.Navigate("http://website.com") 'the target
    End Sub

    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
         'GetBtnByValue("What the Button Says").InvokeMember("Click")
    End Sub
End Class
#3 · 16y ago
GE
geebes888
Thanks brah i'll keep dis in mind for later.
#4 · 16y ago
CO
CodeHPro
Quote Originally Posted by Coder Never View Post
I found out how so Just Incase anyone wants to know....I Used this Code

Note : When you See ("Green") You Replace , Such As I would replace ID with my variable

Code:
Public Class Form1

    Inherits System.Windows.Forms.Form
    Dim asd

    Private Function GetBtnByValue(ByVal value As String) As HtmlElement
        For Each d As HtmlElement In Webbrowser1.Document.GetElementsByTagName("input")
            'If (d.GetAttribute("type").ToLower = asd.Text Or d.GetAttribute("type").ToLower = "submit") Then
            If (d.GetAttribute("type").ToLower = "submit") Then
                If (d.GetAttribute("value") = value) Then
                    Return d
                    Exit For
                End If
            End If
        Next
    End Function

    

    Private Sub Button1_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        WebBrowser1.Document.GetElementById("ID").SetAttribute("value", TextBox1.Text())
        

        'GetBtnByValue("What the Button Says").InvokeMember("Click")



    End Sub
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        WebBrowser1.Navigate("http://website.com") 'the target
    End Sub

    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
         'GetBtnByValue("What the Button Says").InvokeMember("Click")
    End Sub
End Class
dam noob give me credit that's what i posted it for
http://www.mpgh.net/forum/33-visual-...utomating.html
#5 · 16y ago
Posts 1–5 of 5 · Page 1 of 1

Post a Reply

Similar Threads

  • [Help] Atom API with Visual Basic 6.0 or .NETBy Bull3t in Visual Basic Programming
    5Last post 20y ago
  • Developing an aimbot that works with information stored in memory... Need assistanceBy ScottOwnsK in General
    2Last post 19y ago
  • [REQUEST]Need any hack with GPS!By naomelembro14 in WarRock - International Hacks
    24Last post 19y ago
  • [REQUEST]Any Hack progs with ONLY gps?...By naomelembro14 in WarRock - International Hacks
    3Last post 19y ago
  • problem with the visual basic tutBy Elliwood in WarRock - International Hacks
    5Last post 19y ago

Tags for this Thread

#basic#filling#information#request#visual#webboxes