S
shutterbugin
I need to have a different picture in each record in a single file can I do
this? How?
this? How?
I need to have a different picture in each record in a single file can I do
this? How?
shutterbugin said:I need to have a different picture in each record in a single file can I do
this? How?
fredg said:I need to have a different picture in each record in a single file can I do
this? How?
Storing pictures in an Access database is very inefficient, and will
lead to database bloat.
I would strongly suggest you store your pictures in a folder on your
hard drive.
In the database, store just the name of the picture, i.e.
picturename.jpg, in a regular text datatype field.
To display the picture, use an Image Control.
Set it's Picture property to the field that stores the picture path.
[ImageName].Picture = "c:\foldername\" & [FieldName]
You can do that in a Form's Current event, or a Report's Detail Format
event.