P
Peter
I have the following code:
Dim client As New WebClient
Dim aStream As Stream
Dim aReader As StreamReader
aStream = client.OpenRead(http://yaddayadda)
aReader = New StreamReader(aStream, True)
strPage = strPage & aReader.ReadToEnd
the url I am reading contains this data
<td width="40" bgcolor="#000000"><font color="#FFF000"> 7½</font></td>
However, when using the code above the "half" character does not exist in
the string?
Help!
please reply to petersmith#@#ns.sympatico.ca (remove # signs)
Thanks in advance!
Dim client As New WebClient
Dim aStream As Stream
Dim aReader As StreamReader
aStream = client.OpenRead(http://yaddayadda)
aReader = New StreamReader(aStream, True)
strPage = strPage & aReader.ReadToEnd
the url I am reading contains this data
<td width="40" bgcolor="#000000"><font color="#FFF000"> 7½</font></td>
However, when using the code above the "half" character does not exist in
the string?
Help!
please reply to petersmith#@#ns.sympatico.ca (remove # signs)
Thanks in advance!