sevenalive Posted August 1, 2005 Posted August 1, 2005 (edited) [deleted] Edited February 1, 2025 by sevenalive
dman Posted August 2, 2005 Posted August 2, 2005 Imports systemDim Req As WebRequest = WebRequest.Create("http://www.yoursite.com/thefile.txt")Dim Resp As WebResponseTry Resp = Req.GetResponseCatch exc As Exception MsgBox(exc.Message) Exit SubEnd TryDim netStream As StreamReadernetStream = New StreamReader(Resp.GetResponseStream)TextBox1.Text = netStream.ReadToEnd
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now