retrieve a picture from a website and save to disk

  • Thread starter Thread starter Brian Henry
  • Start date Start date
that actually is amazingly simple thanks!

Cor Ligthert said:
Brian,

In this case depending on security etc, you mostly can use
webclient.downloadfile

http://msdn.microsoft.com/library/d...fsystemnetwebclientclassdownloadfiletopic.asp

It is easier to use than as you would expect reading the sample on this
link above

Dim myWebClient As New WebClient()
myWebClient.downloadfile _(
"http://www.somesite.com/images/imagename.jpg","C:\myimage.jpg")

That is all

I hope this helps?

Cor
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top