G
Guest
I've added a button on a continuous form to open a notes form with the
following code. I have successfully done this in the past, but am now
getting the following error message:
"The expression On Click you entered as the event property setting produced
the following error: A problem occurred while Microsoft Office Access was
communicationg with the OLE server or ActiveX Control."
Of course, I need to use the database tomorrow. Any ideas?
Thanks greatly,
Sash
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "Note"
stLinkCriteria = "[ID]=" & Me![ID]
DoCmd.OpenForm stDocName, , , stLinkCriteria
following code. I have successfully done this in the past, but am now
getting the following error message:
"The expression On Click you entered as the event property setting produced
the following error: A problem occurred while Microsoft Office Access was
communicationg with the OLE server or ActiveX Control."
Of course, I need to use the database tomorrow. Any ideas?
Thanks greatly,
Sash
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "Note"
stLinkCriteria = "[ID]=" & Me![ID]
DoCmd.OpenForm stDocName, , , stLinkCriteria