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 › VB Source CODE [ Web Browser and etc ]

AngryVB Source CODE [ Web Browser and etc ]

Posts 1–9 of 9 · Page 1 of 1
Faris Hadzir
Faris Hadzir
VB Source CODE [ Web Browser and etc ]
Hello ..This is Source Code for beginner to create a simple Web Browser or Spam application

ok Go

Progress Bar Code

1. Inject Load
Requirement

= Timer =
= Button =

START Code

Code:
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        ProgressBar1.Value = 1
        ProgressBar1.Increment(+80)
        ProgressBar1.Increment(+100)
        Timer1.Start()
        Timer1.Enabled = True
    End Sub
STOP CODE ( Clear )

Code:
    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
        ProgressBar1.Value = 0
        Timer1.Stop()
        Timer1.Enabled = False
    End Sub

Timer code

Code:
    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
        ProgressBar1.Increment(+1)
        On Error Resume Next
        SendKeys.Send(TextBox1.Text)
        On Error Resume Next
        SendKeys.Send("{Enter}")
    End Sub
MessangeBox

Code:
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        MsgBox("Welcome")
    End Sub
*Note : you also can change the Msg Box item , just delete WELCOME and change what you want


Close application using Button

Code:
    Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
        MsgBox("Thanks for using this tools")
        Application.Exit()
    End Sub

================================================== ================================================== ================

Web Browser CODE

Forward Button for WebBrowser

Code:
    Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
        Forward(Button)
        WebBrowser1.GoForward()
    End Sub
Backward Button for Webbrowser

Code:
    Private Sub Backward_Click( _
        ByVal sender As Object, ByVal e As EventArgs)


        ' Backward if about:blank is loaded  
        ' content specified by the DocumentText property. 
        If Not WebBrowser1.Url.Equals("about:blank") Then
            WebBrowser1.GoBack()
        End If

    End Sub
Refresh Button for WebBrowser

Code:
    Private Sub RefreshButton_Click( _
        ByVal sender As Object, ByVal e As EventArgs) _
        Handles ToolStripButton3.Click

        WebBrowser1.Refresh()

    End Sub
ProgressBar on WebBrowser

Code:
    Private Sub WebBrowser1_ProgressChanged(ByVal sender As Object, ByVal e As System.Windows.Forms.WebBrowserProgressChangedEventArgs) Handles WebBrowser1.ProgressChanged, WebBrowser1.ProgressChanged
        Try
            ProgressBar1.Maximum = e.MaximumProgress
            ProgressBar1.Value = e.CurrentProgress
        Catch ex As Exception
        End Try
    End Sub

Cancel Button for WebBrowser

Code:
    Private Sub stopButton_Click( _
        ByVal sender As Object, ByVal e As EventArgs) _
        Handles ToolStripButton1.Click

        WebBrowser1.Stop()

    End Sub
Navigate for WebBrowser

Code:
    ' Navigates to the given URL if it is valid. 
    Private Sub Navigate(ByVal address As String)

        If String.IsNullOrEmpty(address) Then Return
        If address.Equals("about:blank") Then Return
        If Not address.StartsWith("http://") And _
            Not address.StartsWith("https://") Then
            address = "http://" & address
        End If

        Try
            webBrowser1.Navigate(New Uri(address))
        Catch ex As System.UriFormatException
            Return
        End Try

    End Sub
Search Button for WebBrowser

Code:
    ' Navigates to the URL in the address box when  
    ' the Go button is clicked. 
    Private Sub goButton_Click( _
        ByVal sender As Object, ByVal e As EventArgs)


        Navigate(ToolStripTextBox1.Text)

    End Sub


PLEASE LEAVE A COMMENT BELOW and tell your PROBLEM/ERROR message with SCREENSHOT Provide


Mind Sticky??? i ask only.... @Retard ..
#1 · edited 13y ago · 13y ago
tynab
tynab
Nice but did you put that if someone writes in textbox mpgh (not mpgh.net) and then webbrowser search it with google
#2 · 13y ago
Psychotic
[MPGH]Psychotic
Sorry man, this isn't really.. "Sticky" worthy kind of a thread. Nonetheless, it's a great tutorial and source, but it's not something that would get stickied. Sorry bud.
#3 · 13y ago
Biesi
Biesi
Filling a progressbar using a timer?
Makes no sense at all
#4 · 13y ago
WhiteHat PH
WhiteHat PH
Wow nice Source Code ^^
#5 · 13y ago
Faris Hadzir
Faris Hadzir
Quote Originally Posted by -BiESi View Post
Filling a progressbar using a timer?
Makes no sense at all
hurm... i use it for WebBrowser if you dont like its OK
#6 · 13y ago
Coper
Coper
Bro u may have to make a video on utube!!
NOT FOR ME!
#7 · 13y ago
NF
nfs6
nice
nice realy nice
#8 · 13y ago
MY
mynameisdoom
Simple yet effective! Nice!
#9 · 13y ago
Posts 1–9 of 9 · Page 1 of 1

Post a Reply

Similar Threads

  • make a web browser and get $5!By Ian in Visual Basic Programming
    13Last post 15y ago
  • Request Source Code of AutoAmmo and AutoRepairBy alombrown in WarRock Hack Source Code
    6Last post 13y ago
  • WarRock Source Code Section - Help And SupportBy TheCamels8 in WarRock Hack Source Code
    25Last post 15y ago
  • I bring you tidings of joy, and source code.By EpicPacMan in Combat Arms Discussions
    24Last post 16y ago
  • Stamina Hack and source code ?By Teh Sasuke in C++/C Programming
    0Last post 18y ago

Tags for this Thread

None