I am trying to read a small amount from an Internet .txt file and show it in a text box, but with no result ...
These systems are imported:
Imports System.IO Imports System.Text Imports System.Net
Here is the reading file code:
Dim address As String = "http://www.url.com/text.txt" Dim client As WebClient = New WebClient() Dim reply As String = client.DownloadString(address) TextBox2.Text = reply
source share