Hi, I have used the code from FAQ: faq796-3118 which works a treat, but I would like to show the download progress of the file in question using a progress bar.
Is this possible??
Any ideas?
Regards,
Martin
Computing Help And Info:
Code:
Public Sub GetPackage(ByVal sFile As String, ByVal destination As String, ByVal sRemoteUrl As String)
Dim wc As New Net.WebClient()
Try
wc.DownloadFile(sRemoteUrl + sFile, destination + "\\" + sFile)
Catch
MsgBox("Unable to download file " + sRemoteUrl + sFile)
End Try
End Sub
Any ideas?
Regards,
Martin
Computing Help And Info: