Greetings, all,
Here's the lowdown: I have a split database as Access 2003 files accessed through Access 2010. Both files are stored on a server with the FE file being accessed on that server, not on individual hard drives.
I am now getting an runtime error 2467 "the expression you entered refers to an object that is closed or doesn't exists". I am then directed to debug some code which does not appear to be problematic. Then names are all correct.
This only happens at one location and all users at this location get this error. I am not able to replicate this error where I am where I don't have the same network setup, although I do have duplicate files on a different server.
Below is the code. Since I can't replicate, the trigger line is bold and red.
I also haven't supplied code on this forum and wasn't sure how to put the code in a separate window. Any help is appreciated.
Thanks.
Paul
code:
Private Sub Form_Open(Cancel As Integer)
Me.cboPatientLookup = ""
Me.frmIndClinicalUtilTracksub.Form.DataEntry = True
Me.frmGroupProgressNotesub.Form.DataEntry = True
Me.frmIndNarrativeNotesub.Form.DataEntry = True
Me.frmDaily1on1sub.Form.DataEntry = True
DoCmd.GoToRecord , , acNewRec
Here's the lowdown: I have a split database as Access 2003 files accessed through Access 2010. Both files are stored on a server with the FE file being accessed on that server, not on individual hard drives.
I am now getting an runtime error 2467 "the expression you entered refers to an object that is closed or doesn't exists". I am then directed to debug some code which does not appear to be problematic. Then names are all correct.
This only happens at one location and all users at this location get this error. I am not able to replicate this error where I am where I don't have the same network setup, although I do have duplicate files on a different server.
Below is the code. Since I can't replicate, the trigger line is bold and red.
I also haven't supplied code on this forum and wasn't sure how to put the code in a separate window. Any help is appreciated.
Thanks.
Paul
code:
Private Sub Form_Open(Cancel As Integer)
Me.cboPatientLookup = ""
Me.frmIndClinicalUtilTracksub.Form.DataEntry = True
Me.frmGroupProgressNotesub.Form.DataEntry = True
Me.frmIndNarrativeNotesub.Form.DataEntry = True
Me.frmDaily1on1sub.Form.DataEntry = True
DoCmd.GoToRecord , , acNewRec