I'm confused as to why my process.start works perfectly fine with http://www.google.com/ but if I try http://www.pandora.com/ it doesn't load the page at all. Why does this happen?
Also when I try to use the code below no websites open, even when the ListBox1 selected index is "http://www.google.com/"
Also when I try to use the code below no websites open, even when the ListBox1 selected index is "http://www.google.com/"
Code:
Private Sub ListBox1_MouseDoubleClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles ListBox1.MouseDoubleClick
URL = ListBox1.SelectedIndex.ToString
Process.Start(URL)
End Sub