Renaming Texts (NOT THE NAMES):
Button1 = Search
RadioButton1 = Google
RadioButton2 = Yahoo
RadioButton3 = Conduit
Start with double click on your button and add this.
[vb]If RadioButton1.Checked Then
System.Diagnostics.Process.Start("http://www.google.com/search?hl=en&q=" + TextBox1.Text + "&aq=f&oq=") ' Opens your default browser and searches in Google what you typed in the TextBox.
ElseIf RadioButton3.Checked Then
System.Diagnostics.Process.Start("http://search.conduit.com/Results.aspx?q=" + TextBox1.Text) ' Opens your default browser and searches in Conduit what you typed in the TextBox.
Wow nice thanks!
This program really helped. Instead of going to google or yahoo or conduit to search, you can just open the program, type in what you wanna search and it does it for you automatically!