Save specific images to specific records

  • Thread starter Thread starter Gertous
  • Start date Start date
G

Gertous

How can I have the ID picture of the specific person who's record is being
reviewed, without hardcoding it for every single person in table?
 
It is not a good idea to store images in your database. They are very large
compared to text or numeric data and can quickly cause your database to
exceed the 2G limit for an mdb. The better way is to create a directory in
which to store the images and create a hyperlink to the image using a
hyplerlink data type field in your table.
 
Back
Top