G
Guest
The following event procedure works fine when running as a single user. As
soon as two workstations are running the database, it returns an error, "Save
command cancelled"
Any suggestions are appreciated.
Private Sub Command35_Click()
On Error GoTo Err_Command35_Click
DoCmd.Save
DoCmd.Close
Exit_Command35_Click:
Exit Sub
Err_Command35_Click:
MsgBox Err.Description
Resume Exit_Command35_Click
End Sub
soon as two workstations are running the database, it returns an error, "Save
command cancelled"
Any suggestions are appreciated.
Private Sub Command35_Click()
On Error GoTo Err_Command35_Click
DoCmd.Save
DoCmd.Close
Exit_Command35_Click:
Exit Sub
Err_Command35_Click:
MsgBox Err.Description
Resume Exit_Command35_Click
End Sub