Sorry for re-posting, but this problem is really bugging me. I have been working on this database for a long time and if I can just get these maps to display correctly I can put this beast to rest. I'm still having trouble linking images. I have a table with two fields... [Map] which contains linked maps from the directory "c:\mydocuments\sanitarymaps" and [ID] which is just an autonumbered field. All of my maps are saved as the corresponding records autonumber. So the map for the first record is simply "1.jpg". I have a bound image control named Map and I set the form's properties as "Picture - (none)" and "Picture Type - Linked". Then I put this code into the On_Current Event of the form.
Code:
Private Sub Form_Current()
If Me![ID] <> 0 Then
Me!Map.Picture = "c:\MyDocuments\SanitaryMaps\" & Me![ID] & ".jpg"
End If
End Sub
[\code]
Unfortunately the debugger keeps saying: Run-time error "438" - Object doesn't support this property or method. How can I get Access to automatically display the correct picture in my form?? If someone can tell me what I am doing wrong I would really appreciate the help. Thanks in advance for any suggestions. L.H.