Hello
I would like a form to open up on a new record BUT not have that record be editable until the user selects "new record". This might sound odd but because the user could be going into the form to search for a record to edit (there is an edit button as well) I want the step of adding a new record to be deliberate. Right now on the OnLoad even of the form I have
The above does open up at a new record but I am able to enter data without having to select the Add button which I don't want. Thanks.
I would like a form to open up on a new record BUT not have that record be editable until the user selects "new record". This might sound odd but because the user could be going into the form to search for a record to edit (there is an edit button as well) I want the step of adding a new record to be deliberate. Right now on the OnLoad even of the form I have
Code:
Private Sub Form_Load()
biRet = MousewheelOff
DoCmd.GoToRecord , , acNewRec
Me.AllowEdits = False
End Sub
The above does open up at a new record but I am able to enter data without having to select the Add button which I don't want. Thanks.