grazie, grazie.

sto leggendo la documentazione del framework, e per ora ho provato questo:

Sub sendFile()
' initialise the web object
Dim webClient As New System.Net.WebClient()

' set the URL
Dim strFilename as string
strFilename="http://www.sito.it/cartella/immagine.gif"

' create a bitmap based on the image from the URL
Dim g = New

System.Drawing.Bitmap(webClient.OpenRead(strFilena me))


ma non riesce a leggere il flusso di dati corrispondente all'immagine richiamata nella stringa strFilename.

Devo studiare ancora...