Retrieving Images

  • Thread starter Thread starter jty202
  • Start date Start date
J

jty202

Hi,

I like to know how I can retrieve an image and set it to an Image object.
I seem to can't find anything on the net that can help me on this. Thanks
 
jty202 said:
I like to know how I can retrieve an image and set it to an Image object.
I seem to can't find anything on the net that can help me on this. Thanks

Retrieve from what source?

A file? => 'Image.FromFile'.

A database? =>

HOW TO: Read and Write a File to and from a BLOB Column by Using ADO.NET and
Visual Basic .NET
<URL:http://support.microsoft.com/?scid=kb;EN-US;316887>

HOW TO: Read and Write a File to and from a BLOB Column by Using Chunking in
ADO.NET and Visual Basic .NET
<URL:http://support.microsoft.com/?scid=kb;EN-US;317034>

The internet? => 'WebClient.DownloadFile'.

....
 
Back
Top