
rwebsite").ToLower().Contains("true")
rwebsite", the webclient downloads the pagesource from there, checks whether it contains "true". the "useable" variable now tells you whether the page said true or false
rwebsite").ToLower().Contains("true") If Not useable Then 'the pagesource didn't contain "true"
PictureBox1.Visible = True & PictureBox2.Visible = False & PictureBox3.Visible = False
Else
PictureBox2.Visible = True & PictureBox1.Visible = False & PictureBox3.Visible = False
End If

Dim useable As Boolean = False
Using wClient As New Net.WebClient()
useable = wClient.DownloadString("************").ToLower().Contains("FALSE")
End Using
If Not useable Then 'the pagesource didn't contain "true"
PictureBox1.Visible = True
PictureBox2.Visible = False
Else
PictureBox1.Visible = False
PictureBox2.Visible = True
End If
