okay i have made a browser, i want it to run a website when you press the go button but, when i press go it opens my default webbrowser and goes to the link
here is my method what am i doing wrong?
Code:
Private Sub Button6_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button6.Click
Dim GECode As String
GECode = ComboBox1.Text
Dim FixedGECode As String
FixedGECode = GECode.Replace(" ", "+")
Process.Start("http://services.runescape.com/m=itemdb_rs/results.ws?query=" + FixedGECode + "&price=all&members=")
End Sub