Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub Command3_Click()
'It is best to name controls properly, cmdSave, for example
On Error GoTo Err_Command3_Click
'PWise's version is better, this version is dprecated by MS
'DoCmd.DoMenuItem acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70
docmd.RunCommand acCmdSaveRecord
Exit_Command3_Click:
Exit Sub
Err_Command3_Click:
MsgBox Err.Description
Resume Exit_Command3_Click
End Sub