Conformation yes No question

S

Simon

For when i click the order button on my database is there a way that i
can have a messagebox to come up to ask if i am sure i want to place an
order with a yes and no click boxes


Thanks

Simon
 
K

Klatuu

Use the Form's Before Insert event:

If MsgBox("Are You Sure You Want to Place This Order", vbYesNo + vbQuestion)
= vbNo Then
Cancel = True
End If
 
Top