Help text when using Switch board Manager

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

Guest

Hi, I am not sure where to ask this question, but I want to do the following:
I have created some macros to update tables in a database. I have added
these macros to the Swichtboard as a separate switchboard page. Now I want to
have a message appear when the user clicks on this shortcut to the macros to
verify with the user if she is sure that this is the option she wants,
otherwise she can return to the main page.
Regards, Lupe
 
Lupe,

I am not 100% clear exactly what you are trying to achieve here. But
you will probably want to consider a Condition in your macro, something
like this...
MsgBox("Are you sure?",36)=6

By way of explanation, the 36 is a combination of the code for a
question mark icon on the message box (32) plus the code for Yes and No
buttons on the message box (4), and the 6 is the code for a response of Yes.
 
Back
Top