Using a tuple value to open a file

Cajunspirit

Member
Joined
Sep 29, 2008
Messages
19
Programming Experience
Beginner
Hi all,

I am trying to use a Database as the backend, that has a field for storing image locations.

I want to use the absolute address found in the tuple of a record and assign it's value to the picture box so that it displays the image associated with that specific record.

VB.NET:
 ImagePath = New Bitmap([B]xxx[/B])
            PictureBox1.Image = ImagePath

I am not sure how to first isolate the tuple value so that I may assign it to a local variable... :mad:

Please help.
 
Back
Top