I'm a newby to Access and VBA and I have a continous form with an ID field and an empty picture named 'Miniature' on the same row.
To display the pictures for each row, I'm using the FormLoad event
Private Sub Form_Load()
Me.Miniature.Picture = GetDBPath & "miniatures\" & Format(Me.ID, "000") & ".gif"
End Sub
The pictures are displayed, but it's the same for each row since 'Miniature' is the name for every picture
I also tried RecordSet but the picture is not a field so I don't know how to access it.
I'm searching for a way to accomplish what I want ? What do I need to use ?