Quantcast
Channel: VBForums - Visual Basic .NET
Viewing all articles
Browse latest Browse all 27329

An error occurred creating the form. See Exception.InnerException for details.

$
0
0
Dim tags = Form2.RichTextBox1.Lines
Dim url = "https://live.xbox.com/en-GB/Profile?gamertag="
Dim urltags = url + tags

Dim request As System.Net.HttpWebRequest = System.Net.HttpWebRequest.Create(urltags)
Dim response As System.Net.HttpWebResponse = request.GetResponse()
Dim sr As System.IO.StreamReader = New System.IO.StreamReader(response.GetResponseStream())
End If
___________________________________________________________________________________________

when i change

Dim tags = Form2.RichTextBox1.Lines to form2.richtextbox1.text it works but it only scans the 1st word of the list and stops

___________________________________________________________________________________________
ERROR: Operator '&' is not defined for string "https://live.xbox.com/en-GB/Prof" and type 'String()

Viewing all articles
Browse latest Browse all 27329

Trending Articles