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 Submit_Click()
If cancelled.Value = -1 Or verifed.Value = -1 Then
DoCmd.GoToRecord , , acNext
DoCmd.Close acForm, "Crosby Call logging"
DoCmd.OpenForm "Start"
Else
MsgBox ("Cancelled Or Verified Must Be Selected")
End If
End Sub
Private Sub Submit_Click()
If Me!cancelled = True Or Me!verified = True Then
DoCmd.GoToRecord , , acNext
DoCmd.Close acForm, "Crosby Call logging"
DoCmd.OpenForm "Start"
Else
MsgBox "Please choose one or more option"
End If
End Sub