Dukester0122
IS-IT--Management
I have a form called Remittance with the following fields:
RemittanceID, Customer, Address, State, Zip, Telephone
I've created a Save button which I want to save the data then clear the fields after. Here's my code:
Private Sub Save_Click()
On Error GoTo Err_Save_Click
DoCmd.RunCommand acCmdSaveRecord
DoCmd.GoToRecord , , acNewRec
Exit_Save_Click:
Exit Sub
RemittanceID, Customer, Address, State, Zip, Telephone
I've created a Save button which I want to save the data then clear the fields after. Here's my code:
Private Sub Save_Click()
On Error GoTo Err_Save_Click
DoCmd.RunCommand acCmdSaveRecord
DoCmd.GoToRecord , , acNewRec
Exit_Save_Click:
Exit Sub