Results 1 to 25 of 25

Thread: [RESOLVED]Web Browser Help to show list of urls instead of web page ?

Threaded View

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Dec 2008
    Posts
    314

    Arrow [RESOLVED]Web Browser Help to show list of urls instead of web page ?

    Hi Guys I been working on search/webbrowser

    Here is the thing at the moment I have a list box and i have a text field I also have a drop down box so u can select which search angine to use


    My problem is this when I type in the search Box it opens up my internet explorer and shows me in search there what I typed in my program

    Instead I want my program to display list of urls in my list box.. this is what my cod looks like at the moment

    Code:
        Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
            If TextBox1.Text = "" Then
                MsgBox("Error,You aeent gonna find poop with no word in search", MsgBoxStyle.Critical)
            Else
                If ComboBox1.Text = "Google" Then
                    System.Diagnostics.Process.Start("http://www.google.co.uk/search?q=" + TextBox1.Text + "&btnG=Search&meta=")
                End If
            End If
        End Sub
    End Class

    Could some one help me out please so that when I hit Go it will display list of urls in my list box no info just web url in list format

    Thanks guys
    Last edited by Breez; Aug 29th, 2009 at 12:48 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width