Displaying a JPG in a form

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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
 
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"
 
Back
Top