Switchboard Confirmation

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a switchboard panel that the choices run some macros that I would like
to get confirmation from the user that they truly want to run the the
switchboard choice before the query is ran.

One of those things that I would like to get confirmation of "Do You Really
Want to Run this Macro?"

Thanks
 
Stickandrock,

You need to use a Condition in your macro. If you can't see this in
your macro design window, select Conditions from the View menu. Then,
as an example to get you started, put something like this in the
Condition column next to the action you want to have confirmed...
MsgBox("Do You Really Want?",36)=6
 
Back
Top