using continious forms

  • Thread starter Thread starter Bill
  • Start date Start date
B

Bill

I want to display a list of thumbnail images on a form. The record source
has a field with a path to each image. Can I use this field to display
different images for each record. If I use the Ole object to store each
image the database grows in size so that is the reason I want to use a path
field to link each image.
can anyone help me out or point me in the right direction.
thanks!
 
Unfortunately Access doesn't fire an event for each record in a continuous form, so I don't think you can
update an image control in code this way.

One possibility is to create a fixed layout of controls that display, for example, 10 records per page,
with next/prev buttons to navigate a page at a time.

This approach is the basis of one of our samples - you may be able to adapt this to your needs. For more
info visit the url below.
 
Back
Top