BKF-Pop-up message box

  • Thread starter Thread starter BKF
  • Start date Start date
B

BKF

Can a popup message box be created in Access and can it be placed as a button
on a form, and when clicked the popup opens?

For example:

Button called: HELP
Message: Call xxxxx if you need help with yyyy, so on....

Thanks
 
Build the form you want and set it as pop-up in the properties. Put in a
command button. Use the command button wizard to do this for you and have it
open the pop-up form.
 
I Will try, thanks..

golfinray said:
Build the form you want and set it as pop-up in the properties. Put in a
command button. Use the command button wizard to do this for you and have it
open the pop-up form.
 
You don't need to build a special form for this! Put the following code in
the Click event of the Help button:

MsgBox "Call xxxxx if you need help with yyyy, so on....",,"HELP"

Look at MsgBox Function in the Help file.

Steve
(e-mail address removed)
 
Back
Top