How to display multiple pictures per record in an Access database?

W

Wadim Grasza

I want to store and display (on a form or a report) multiple pictures
per
record in an Access database. The pictures are not stored within the
database. They are stored as files and the database contains the paths
to the
pictures.
The database consists of two tables:

TABLE DATA
ID Name LastName

TABLE PICTURES
ID Path

I want to create a form displaying data for each record of TABLE DATA
and
all the pictures (let's say aligned horizontally) for the particular
record
from TABLE PICTURES (ID <-> ID). MS Access allows subforms to be
added to a
form, but this doesn't solve the case, since subforms can be only
displayed
in data sheet view.
 
A

Arvin Meyer [MVP]

Subforms can be displayed in Single form, and continuous views as well. You
want to set your form up in continuous view. This won't solve the problem of
horizontal display, but you may perhaps be able to change that requirement.
--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access downloads:
http://www.datastrat.com
http://www.mvps.org/access
 
W

Wadim Grasza

OK, that helps a lot, but I really need to display the pictures
horizontally. I have also tried creating Image controls dynamically
using VBA, but this won't help, since controls can be created only in
design mode. Is there any other way?
 

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