Stream Text From Website to Form [solved]
I was wondering how I was suppose to do this.
In a auto updater you would upload a versions text and the form checks if the program is out dated. I was wondering if there is a way to upload a text file online and whoever opens the form will be able to see the text on that file.
Another method that I perfer would be writing text on the website and it just appears on the form textbox.
Thanks

[highlight=vb.net]
Using wClient As New Net.WebClient
Dim downloadedString As String = wClient.DownloadString("yourtxtfilehere")
'//do something with the string here.
End Using
[/highlight]
How would I connect the web to a certain web page?