(adsbygoogle = window.adsbygoogle || []).push({});
Dim totalLinks As Integer = ListBox1.Items.Count()
Dim i As Integer = 0
For i < totalLinks
Dim request As HttpWebRequest = HttpWebRequest.Create("
https://api.*******/api.php?key=" & TextBox1.Text & "&uid=" & TextBox2.Text & "&advert_type=int&domain=*******&url=" & ListBox1.Items(i))
Dim response As HttpWebResponse = request.GetResponse
Dim reader As New StreamReader(response.GetResponseStream)
Dim strings As String = reader.ReadToEnd
ListBox2.Items.Add(strings)
i keep getting an synax error on the CODED box of text i dont know what ive done wrong