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()
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()