BKF-Pop-up message box

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
 
G

golfinray

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.
 
B

BKF

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.
 
S

Steve

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)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top