E ethan.geerdes Registered User. Local time Today, 10:50 Joined Jun 4, 2015 Messages 116 Feb 22, 2016 #1 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?"
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, 18:50 Joined May 23, 2011 Messages 4,806 Feb 22, 2016 #2 Try something like this in the forms Before Update event Code: If MsgBox("Your Message", vbYesNo, "Confirmation Required") = vbNo Then Cancel = True End If
Try something like this in the forms Before Update event Code: If MsgBox("Your Message", vbYesNo, "Confirmation Required") = vbNo Then Cancel = True End If