confirmation window (1 Viewer)

ethan.geerdes

Registered User.
Local time
Today, 07:55
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?"
 

bob fitz

AWF VIP
Local time
Today, 15:55
Joined
May 23, 2011
Messages
4,727
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

Top Bottom