copying pic of web

jnash

Well-known member
Joined
Oct 20, 2006
Messages
111
Programming Experience
Beginner
hi there, right now i have a variable with the string of a gif inside it, i want to copy to a loacl le, i dont have the exact coding on me now (for some reason my home pc doesnt allow me on this site??) but i use the


system.io.file.copy method, but because the gif is online the app errors and says it cant copy a URI, whats the best way around this

thanks jon
 
You're welcome. ;)
VB.NET:
Dim web As New Net.WebClient
web.DownloadFile(address, filename)
 
Back
Top