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




Reply With Quote