I have never seen this error before nor can I recreate it on my computer. We currently use Access 2007. Basically, I have forms that when the user finishes entering information, another form will open and then close the current one. It's pretty simple, but on one users computer it's causing consistently this error:
Error 2467 - Error Description - The Expression you entered refers to an object that is close or doesn't exist.
Never saw this error until recently. There's 2 types of events either via a macro or via VBA:
Macro example:
Action & Arguments
-------------------
RunCommand SaveRecord
OpenForm frm:Vendor_Details, Form, , ="[ID-Vendor]=" & [ID-Vendor], , Normal
Close Form, Frm:VendorManage, Prompt
VBA example:
'if a group is assigned then log the user in else close the application.
If isGrpAssigned <> 0 Then
gbl_User = Me.cboEmployee.Value ' pass the username to the global user variable
DoCmd.OpenForm "frm_MainForm" ' Open the main form
DoCmd.Close acForm, "frmLogon" 'close the log on form
Else
.....
Has anyone seen this before? Any resolutions?
Error 2467 - Error Description - The Expression you entered refers to an object that is close or doesn't exist.
Never saw this error until recently. There's 2 types of events either via a macro or via VBA:
Macro example:
Action & Arguments
-------------------
RunCommand SaveRecord
OpenForm frm:Vendor_Details, Form, , ="[ID-Vendor]=" & [ID-Vendor], , Normal
Close Form, Frm:VendorManage, Prompt
VBA example:
'if a group is assigned then log the user in else close the application.
If isGrpAssigned <> 0 Then
gbl_User = Me.cboEmployee.Value ' pass the username to the global user variable
DoCmd.OpenForm "frm_MainForm" ' Open the main form
DoCmd.Close acForm, "frmLogon" 'close the log on form
Else
.....
Has anyone seen this before? Any resolutions?