Hi,
I am so frustrated with this issue. I have a split database with no more than 5 users. I have an input form that has an Add New Record button that was generated by the wizard (code below). The function works periodically and locks up periodically. More often than not, users are receiving locked or cannot be added to recrod error messages.
Can someone shed some light on my problem or offer a suggestion around this please.
<START CODE>
Private Sub Add_New_Record_Input_Form_Click()
On Error GoTo Err_Add_New_Record_Input_Form_Click
DoCmd.GoToRecord , , acNewRec
Exit_Add_New_Record_Input_Form_Click:
Exit Sub
Err_Add_New_Record_Input_Form_Click:
MsgBox Err.Description
Resume Exit_Add_New_Record_Input_Form_Click
Thanks.
End Sub
<END CODE>
I am so frustrated with this issue. I have a split database with no more than 5 users. I have an input form that has an Add New Record button that was generated by the wizard (code below). The function works periodically and locks up periodically. More often than not, users are receiving locked or cannot be added to recrod error messages.
Can someone shed some light on my problem or offer a suggestion around this please.
<START CODE>
Private Sub Add_New_Record_Input_Form_Click()
On Error GoTo Err_Add_New_Record_Input_Form_Click
DoCmd.GoToRecord , , acNewRec
Exit_Add_New_Record_Input_Form_Click:
Exit Sub
Err_Add_New_Record_Input_Form_Click:
MsgBox Err.Description
Resume Exit_Add_New_Record_Input_Form_Click
Thanks.
End Sub
<END CODE>