I have a bounded form and after I click the button to update/save. THe
fields are still there. Is there a way to clear off the fields in the
bounded form.
Thanks,
SA
Here's the code that I have:
Private Sub cmdSave_Click()
On Error GoTo Err_cmdSave_Cli ck
Dim Response
DoCmd.DoMenuIte m acFormBar, acRecordsMenu, acSaveRecord, ,
acMenuVer70
Response = MsgBox("The component has been successfully
updated !!", vbOKOnly, "Component Updated")
Exit_cmdSave_Cl ick:
Exit Sub
Err_cmdSave_Cli ck:
MsgBox Err.Description
Resume Exit_cmdSave_Cl ick
End Sub
fields are still there. Is there a way to clear off the fields in the
bounded form.
Thanks,
SA
Here's the code that I have:
Private Sub cmdSave_Click()
On Error GoTo Err_cmdSave_Cli ck
Dim Response
DoCmd.DoMenuIte m acFormBar, acRecordsMenu, acSaveRecord, ,
acMenuVer70
Response = MsgBox("The component has been successfully
updated !!", vbOKOnly, "Component Updated")
Exit_cmdSave_Cl ick:
Exit Sub
Err_cmdSave_Cli ck:
MsgBox Err.Description
Resume Exit_cmdSave_Cl ick
End Sub
Comment