B
Bill
Can anyone help me out!
I am trying to display a list of images from a table.
using the on current properties are great if you only want to view one image
at a time.
Private Sub Form_Current()
On Error Resume Next
Me![imagename].Picture = Me![imagepath]
End Sub
This will display one image at at time.
Great when you are looking at only a single form. Correct image in picture
When you select next you go to next record and the image changes. The path
for the image is stored in a field and changes accordingly.
That doesnt solve my problem I am wanting to display a list of records with
different images associated to each one
I have included a field which is the path to image. I have seven images in
the
table and when I display all records in a continious form the same image is
shown in all 7 records. When I navigate to the next image the image changes
to correct image but it also changes the other 6 images to the same image.
Is there a way to stop this happening. Displaying 7 different images.
Thanks!
I am trying to display a list of images from a table.
using the on current properties are great if you only want to view one image
at a time.
Private Sub Form_Current()
On Error Resume Next
Me![imagename].Picture = Me![imagepath]
End Sub
This will display one image at at time.
Great when you are looking at only a single form. Correct image in picture
When you select next you go to next record and the image changes. The path
for the image is stored in a field and changes accordingly.
That doesnt solve my problem I am wanting to display a list of records with
different images associated to each one
I have included a field which is the path to image. I have seven images in
the
table and when I display all records in a continious form the same image is
shown in all 7 records. When I navigate to the next image the image changes
to correct image but it also changes the other 6 images to the same image.
Is there a way to stop this happening. Displaying 7 different images.
Thanks!