Yes/No pop-up

  • Thread starter Thread starter Michaelcip
  • Start date Start date
M

Michaelcip

Using Access 2003, I have a macro w/ a series of commands
(append/make/update queries), but prior to them running, I want the user to
answer a "Yes/No" question ("Are you sure you want to do this?"). How is
this done through the macro - the initial line-item? I'd PREFER to do this
through a windows-message box rather than an Access form. Thanks in advance,
MC
 
Michael,

In the Condition of the macro, enter like this:
MsgBox("Are you sure you want to do this?",36,"Confirm")=6
 
Back
Top