confirmation window

ethan.geerdes

Registered User.
Local time
Today, 02:45
Joined
Jun 4, 2015
Messages
116
Is there a way to have a window pop up to confirm whether or not the data is correct that the user is inputting? like an "are you sure you want to write this?"
 
Try something like this in the forms Before Update event
Code:
    If MsgBox("Your Message", vbYesNo, "Confirmation Required") = vbNo Then
        Cancel = True
    End If
 

Users who are viewing this thread

Back
Top Bottom