I'm getting some errors.
Do you happen to know why I get these errors.
This is what I have in the lines:
Do you happen to know why I get these errors.
This is what I have in the lines:
Code:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim myWebClient As New WebClient()
Dim myDatabuffer As Byte() = myWebClient.DownloadData("http://www.xe.com/ucc/convert/?Amount=" & amount.text & "&From=" & combobox1.text & "&to=" & combobox2.Text ")
Dim download As String = Encoding.ASCII.GetString(myDatabuffer)
Dim CON As String = GetBetween(download, _
"<td align="right">", "</td>", 0)
End Sub