E
Emmy
Is there a way to hear a sound (ding) when you tab off the last record in a
form? If it can't go to the next record, the user wants to hear a sound. This
is the code I have running on change of the field:
Private Sub YNX_Change()
On Error GoTo Err_YNX_Change
DoCmd.RunCommand (acCmdSaveRecord)
DoCmd.GoToRecord , , acNext
Exit_YNX_Change:
Exit Sub
Err_YNX_Change:
Resume Exit_YNX_Change
End Sub
Thanks,
Emmy
form? If it can't go to the next record, the user wants to hear a sound. This
is the code I have running on change of the field:
Private Sub YNX_Change()
On Error GoTo Err_YNX_Change
DoCmd.RunCommand (acCmdSaveRecord)
DoCmd.GoToRecord , , acNext
Exit_YNX_Change:
Exit Sub
Err_YNX_Change:
Resume Exit_YNX_Change
End Sub
Thanks,
Emmy