Displaying a JPG in a form

D

Dominique

I have a table full of filenames of JPG images on my hard disk
I havbe a form that allows me to browse through the filenames
Is there a way for me to display the image corresponding to the current record of the form

Can you suggest the approach to help me get started

Thank

Dominique
 
A

Allen Browne

Place a Image (picture) control on your form.
In the Current event of the form, set its Picture property to the name of
the file, e.g.:
Me.[MyImage].Picture = "C:\MyPath\MyFile.jpg"
 

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

Top