Hi.
Id like to download file from internet. Id like to download specific picture.
I have a lot of problems, becouse file doesnt get downloaded each time.
Im using this procedure and in 5 of 10 shots it fails.
please help
Id like to download file from internet. Id like to download specific picture.
I have a lot of problems, becouse file doesnt get downloaded each time.
Im using this procedure and in 5 of 10 shots it fails.
please help
Code:
download image
Try
My.Computer.Network.DownloadFile(urlPath, myFile, "", "", False, 10000000, True)
sql.Insert_Log(clsSQLfunctions.ErrorTypes.Importance4, 1, "Downloaded: ", urlPath)
Img = Image.FromFile(myFile)
DownloadImage = True
Catch ex As Exception
DownloadImage = False
sql.Insert_Log(clsSQLfunctions.ErrorTypes.Importance1, 1, "Error: Cant download (or rewrite) file", "DownloadImage #2 " & urlPath & " " & myFile)
End Try