Ken,
Thanks for your response. Unfortunately, though I am bilingual, my Windows Computer and Office installation is not. It is Dutch. So I am somewhat at a loss to find things like "Image Control" and "Control Source Property". Here is a screen shot of the affected area of my Form:
I have copied and pasted the text in the Pasfoto field's Besturingselementbron (which I assume is Control Source Propert) i.e. "txtNaamFoto" into the Besturingselementbron of the 3x4 rectangle where the picture has always appeared before (selected so therefore there is an orange box around it).
When I go back and Display the Form, there is no picture.
The error that is displayed when I click on the exclamation point shield is (my translation):
"Invalid property of the Control Element: Control element source (Besturingselementbron)" / "That field does not exist in the list of fields". When I check the list of fields, sure enough txtNaamFoto is not there. I am so confused!
I have noticed however, that this field where the picture is supposed to display has a white border around it when the picture is actually located in the path designated in the text field. If that picture does not exist, then there is no white border in that blue field. So it seems to be recognizing that something is there, but isn't processing it correctly.
I have learned, that when a person uses the Word "before" in describing a problem it is often useful to describe what changed. "Before" I used Office 2019 on a different computer. That computer died. I went back to an old Computer that already had Office 2016 installed, and the picture worked. I purchased a new laptop and installed Office 2016 64 bits. It did not work correctly with Mailmerge Word to Outlook, so I completely uninstalled it and installed Office 2016 32 bits. That solved the Mailmerge problem. I believe my problem with the pictures in Access started either with the new computer or with the intallation of the 32 bits version of Office 2016.
Furthermore, here is a screenshot of the Macro I think is responsible for retrieving the picture when a record is accessed. I was told by the person who made this for me, that this was the way to avoid database bloat, where the pics end up being stored in the database file. He said, this loads in only the picture of the record being shown.
Option Compare Database
Option Explicit
Private Sub Form_Current()
On Error Resume Next
If FileExist(Me!txtNaamFoto & "") And _
Len(Me!txtNaamFoto & "") > 0 Then
Pasfoto.Picture = Me.txtNaamFoto
Pasfoto.Visible = True
Else
Pasfoto.Visible = False
End If
End Sub
-----------------------------------
For reasons I cannot fathom, this site's editor numbers each of the lines of the VBA that I tried to paste. They are obviously not present in the macro.
Again, I know very little about all the ins and outs of Access and have next to no knowledge of VBA. Since I don't have an English version of Access, you can destroy the effectiveness of you answer with an English term that does not correspond to anything I see in Dutch. So please, simple, step by step (i.e. "third row from the top") instructions on how to fix this. Thanks. I have tried asking these types of Question on the Dutch site, but they usually tell me my question if too complicated and that I should ask it here or on the Developer's forum.
David