Dim URL as String = "https://myurl.com"
Dim j As HttpJob
j.Initialize("", Me)
j.Download(URL )
Wait For (j) JobDone(j As HttpJob)
If j.Success Then
Log(j.GetString)
Textfield1.Text = j.GetString
End If
j.Release
Dim URL as String = "https://myurl.com"
Dim j As HttpJob
j.Initialize("", Me)
j.Download(URL )
Wait For (j) JobDone(j As HttpJob)
If j.Success Then
Log(j.GetString)
Textfield1.Text = j.GetString
End If
j.Release