I know we've visited this topic before, but I still can't get it working properly. I have an image path I'm storing in my table with a link to an image (object) control on my form. Works great, except when I go to a new record. The image control is displaying the previous records image until I add the new image path for the new record. You'll notice I have a REM for one additional line I tried that didn't correct the problem! Any fresh ideas? As always thanks all for you advice!
Private Sub Form_AfterInsert()
Me!Path = ""
Me![Image].Picture = Me![Path]
REM Me!Image = ""
End Sub

Private Sub Form_AfterInsert()
Me!Path = ""
Me![Image].Picture = Me![Path]
REM Me!Image = ""
End Sub