Talk2Tom11
Centurion
Hey I wrote this code:
and when I run the program and click button 1 it gives me and error on this line:
wClient.DownloadFile(UpdateFile, "C:\1.txt")
If anyone knows what I did wrong please post
Code:
Imports System.Net
Code:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim wClient As New WebClient
'address of file to download
Dim UpdateFile As String = "http://sitewithfile/1.txt"
'download file and folder to put it
wClient.DownloadFile(UpdateFile, "C:\1.txt")
End Sub
and when I run the program and click button 1 it gives me and error on this line:
wClient.DownloadFile(UpdateFile, "C:\1.txt")
If anyone knows what I did wrong please post