How do I add an imgage to contacts in Access?

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

Guest

I have an Access 2003 database that holds individual contacts information of
Volunteers, we would like to include their photo image on their contact
detail information screen. All the contact information is stored in a table.
 
Look at the Northwind example that comes with Access. It has a form that
displays employee photos.

PC Datasheet
Providing Customers A Resource For Help With Access, Excel And Word
Applications
(e-mail address removed)
 
I'm still in Acc2002, but this code seems to keep the size of the db way down
cause you aren't storing all the photos, you're just calling them up when you
need them to display.

Me.imgTmp.Visible = True
Me.imgTmp.Picture = constPhotoPath & Me.PhotoFileName

This displays the photo only when a button on a form is pushed.

It could probably also go on the on current event

Hope this helps
 
Back
Top