Hello,
I have a form and I have found that the users are not following the proper procedures when adding new records, and in turn they edit existing data. I came up with the following solution to force them to follow proper procedures. I have the following code attached to my add new record button. However its not working. When I click on the button I get an error "Object Required". Can someone please help me figure out why this is happening.
I have a form and I have found that the users are not following the proper procedures when adding new records, and in turn they edit existing data. I came up with the following solution to force them to follow proper procedures. I have the following code attached to my add new record button. However its not working. When I click on the button I get an error "Object Required". Can someone please help me figure out why this is happening.
Code:
Private Sub ADDNEWPSIDBUTTON_Click()
On Error GoTo Err_ADDNEWPSIDBUTTON_Click
Me.AllowEdits = True
Me.AllowAdditions = True
Me.AllowDeletions = True
Leaks.Form.AllowEdits = True
Leaks.Form.AllowAdditions = True
Leaks.Form.AllowDeletions = True
DoCmd.GoToRecord , , acNewRec
Exit_ADDNEWPSIDBUTTON_Click:
Exit Sub
Err_ADDNEWPSIDBUTTON_Click:
MsgBox Err.Description
Resume Exit_ADDNEWPSIDBUTTON_Click
End Sub