Download picture in a Desktop-App

How can i download a picture from a web-path in a Windows-Desktop-App and show it in a canvas?

http://documentation.xojo.com/index.php/HTTPSocket.Get

HTTPSocket.Get ( URL as string, file As FolderItem, timeout As Integer ) As Boolean

dim url as String = yourURLhere dim tmp as FolderItem = SpecialFolder.Temporary.Child("mypic") dim h as new HTTPSocket if h.get (url, tmp, 10) then Canvas1.Backdrop = Picture.Open(tmp) end if

Danke Axel, this is exactly how i want it…