I have a form that is taking data from a query. One of the fields have a tring that holds the location (path) of image. some records have image and some don't. I can see the correct image in form1 but when clicking on it, it is going to form2 to show a large size of the same image sometimes it is right and sometimes it is the wrong image?
form1 code:
Code:
Private Sub Image64_Click()
DoCmd.OpenForm "form2"
End Sub
form2 code:
Code:
Private Sub Form_Load()
Me.Image0.Picture = Forms!Form1!Image64.Picture
End Sub
