Display picture in a form - Newbie

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

Guest

I'm an oldie to access and very new to access programming

I have the file name of pictures stored in a field, and then a
"PicturePathAndFile" expression in q query that prefixes the file name with
it's path.
I have already been successful displaying the pictures in a report using the
following event proceudure upon the detail section "on Format" event.

Me.imageBoxName.picture = me.picturepathandfile

But having trouble guessing how to do the same in a one-page-per-record
form.

I tried using the above "on Enter" form event but that didn't work.

Any help for this new guy would be appreciated.
 
Hi -

Try putting the code in the "on current" event of the form.

John
 
Back
Top