G
Guest
Hi guys, I have a tick box which when the user ticks I want to display a msg
box asking the user to confirm they have entered all details on a form
correctly. I have the following code which works to some extent.
This displays the msg box but if the user clicks cancel the box is still
ticked, how do I force the box to untick if the user selects cancel?
Private Sub Printed_Click()
MsgBox "Are Details Complete?", vbOKCancel
Me.Requery
End Sub
box asking the user to confirm they have entered all details on a form
correctly. I have the following code which works to some extent.
This displays the msg box but if the user clicks cancel the box is still
ticked, how do I force the box to untick if the user selects cancel?
Private Sub Printed_Click()
MsgBox "Are Details Complete?", vbOKCancel
Me.Requery
End Sub