I'm trying to display a picture I have already for an employee on frmEmployees on another form.
tblEmployees
EmpID
ProfilePicture
Path
'ProfilePicture field contains the full path and .jpg file location.
I want it to display that users picture on another form.
How can I do this? I have tried DLookup with no luck.
Me.Pic = (DLookup("[ProfilePictureImage]", "tblEmployees", "[EmpID]='" & Me.txtUserID.Value & "'"))