D
DrummerDude
I have searched everywhere for a solution to this problem.
I have a database of products that we sell that functions like an electronic
catalog. The database allows the user to drilldown into our inventory until
they find the product they're looking for. On a typical continuous form, the
database displays 4-5 product records at a time. Each record (product) has
an associated picture that must be displayed. (think about any e-commerce web
site [like Amazon.com] or [BestBuy.com] etc.) Currently, the form shows the
photo associated with the "CurrentRecord" on all displayed records. As the
CurrentRecord changes, the displayed photo changes for ALL records being
displayed.
Private Sub Form_Current()
On Error Resume Next
Me![ImageFrame].Picture = Me![OLEPath]
End Sub
Is there a way to have the form display the proper photo for all displayed
records at the same time (like on an e-commerce web site)??
I do not want to store the actual photos in the database using an OLE object
because it takes up too much real estate. The photos are stored in a
directory and the data source for the image is simply the path to where the
file is stored.
I have a database of products that we sell that functions like an electronic
catalog. The database allows the user to drilldown into our inventory until
they find the product they're looking for. On a typical continuous form, the
database displays 4-5 product records at a time. Each record (product) has
an associated picture that must be displayed. (think about any e-commerce web
site [like Amazon.com] or [BestBuy.com] etc.) Currently, the form shows the
photo associated with the "CurrentRecord" on all displayed records. As the
CurrentRecord changes, the displayed photo changes for ALL records being
displayed.
Private Sub Form_Current()
On Error Resume Next
Me![ImageFrame].Picture = Me![OLEPath]
End Sub
Is there a way to have the form display the proper photo for all displayed
records at the same time (like on an e-commerce web site)??
I do not want to store the actual photos in the database using an OLE object
because it takes up too much real estate. The photos are stored in a
directory and the data source for the image is simply the path to where the
file is stored.