Hi All
My code at the moment contains
I want it to be like this however
My question is how do I check the string (readout) and see if those words are in there to compile the if statements.
Thanks
My code at the moment contains
Code:
Dim readout As String = stream.ReadToEnd lbloverall.Text = readout
Code:
Dim readout As String = stream.ReadToEnd <<code to check if string contains "available">> <<code to check if string contains "regthroughus">> <<code to check if string contains "regthroughothers">> <<IF String does contain "available THEN>> lbloverall.Text = "available" and so on and so on.....
Thanks
Comment