How do I add an imgage to contacts in Access?

F

FranMan

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.
 
S

Steve

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)
 
A

Access101

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
 

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