I have a form with a OLE field. I want to be able to run a macro which inserts a particular jpg file (a scan of my signature) into the field and show the picture rather than the filename. I tried the following code but it gives the error message "Invalid use of Null"
Is there an easy way to do this?
Thanks
AL
Code:
Sub copysig_click()
Dim signame As String
signame = "i:\signature3.jpg"
FileSystem.FileCopy signame, Forms![frm sig]![signature]
End Sub
Is there an easy way to do this?
Thanks
AL