Results 1 to 9 of 9
  1. #1
    Faris Hadzir's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Location
    Samsung Inc.
    Posts
    439
    Reputation
    10
    Thanks
    917
    My Mood
    Bashful

    Angry 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("https://") And _
                Not address.StartsWith("https://") Then
                address = "https://" & 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 ..
    Last edited by Faris Hadzir; 12-23-2012 at 05:04 AM.
    DeadMau5
    @Markus dead forever
    after removed from BlackShot Sections




  2. #2
    tynab's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Posts
    382
    Reputation
    10
    Thanks
    1,167
    My Mood
    Blah
    Nice but did you put that if someone writes in textbox mpgh (not mpgh.net) and then webbrowser search it with google

    New Windows 8 Injector!
    Newest Windows 8 Injector (Fast and very X-Mas) !
    My web browser for computer . Selling how to make that for 30 $ or less


  3. #3
    Psychotic's Avatar
    Join Date
    May 2012
    Gender
    male
    Posts
    13,825
    Reputation
    4234
    Thanks
    6,055
    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.






    Super User since 02.02.2020
    Global Moderator since 09.23.2017
    Moderator since 09.01.2016
    Minion+ since 07.22.2016

    Marketplace Minion since 06.09.2016
    Trove Minion since 06.06.2016
    Middleman since 04.21.2016
    Social Engineering Minion since 02.03.2016
    News FO Freelancer From 11.08.2015 to 07.23.2016
    News FO Head Editor From 08.23.2015 to 11.08.2015
    News FO Head Editor From 07.19.2012 to 08.11.2014
    MPGH News and News FO Founder
    Programming Minion From Unknown to 04.23.2013
    Minecraft Minion From 09.19.2012 to 04.23.2013
    Member since 05.13.2012



  4. The Following User Says Thank You to Psychotic For This Useful Post:

    tynab (12-23-2012)

  5. #4
    Biesi's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    4,993
    Reputation
    374
    Thanks
    8,808
    My Mood
    Twisted
    Filling a progressbar using a timer?
    Makes no sense at all

  6. #5
    WhiteHat PH's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Location
    Some Where I Belong
    Posts
    1,350
    Reputation
    25
    Thanks
    3,100
    My Mood
    Aggressive
    Wow nice Source Code ^^






    When Im gone dont forget me cause I will come back someday.



    Youtube Channel


     


  7. #6
    Threadstarter
    The awkward moment when I talk to women
    MPGH Member
    Faris Hadzir's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Location
    Samsung Inc.
    Posts
    439
    Reputation
    10
    Thanks
    917
    My Mood
    Bashful
    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
    DeadMau5
    @Markus dead forever
    after removed from BlackShot Sections




  8. #7
    Coper's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    BlackOps3.exe
    Posts
    449
    Reputation
    17
    Thanks
    3,648
    My Mood
    In Love
    Bro u may have to make a video on utube!!
    NOT FOR ME!

  9. #8
    nfs6's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    18
    nice
    nice realy nice

  10. #9
    mynameisdoom's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    14
    Reputation
    10
    Thanks
    1
    Simple yet effective! Nice!

Similar Threads

  1. [Request] Request Source Code of AutoAmmo and AutoRepair
    By alombrown in forum WarRock Hack Source Code
    Replies: 6
    Last Post: 12-23-2012, 07:55 AM
  2. [Info] WarRock Source Code Section - Help And Support
    By TheCamels8 in forum WarRock Hack Source Code
    Replies: 25
    Last Post: 12-08-2010, 11:56 AM
  3. make a web browser and get $5!
    By Ian in forum Visual Basic Programming
    Replies: 13
    Last Post: 11-17-2010, 03:43 PM
  4. I bring you tidings of joy, and source code.
    By EpicPacMan in forum Combat Arms Discussions
    Replies: 24
    Last Post: 09-30-2009, 02:01 AM
  5. Stamina Hack and source code ?
    By Teh Sasuke in forum C++/C Programming
    Replies: 0
    Last Post: 12-31-2007, 05:08 PM