Pop Up message box?

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

Guest

Hopefully this is a simple one...

I'd like a separate dialog box with a fixed message and a close button to
pop up when my form loads. How do I make this happen?

Many thanks,
David
 
Rather than a dialog box, I would recommend a Message Box. There are issues
that may make a dialog not work like you want. You did not say how or when
you are opening this form, but basically it would be like:

MsgBox "My Fixed Message", vbOkOnly
DoCmd.OpenForm.....
 
OK,

I figured out on my own how to get a message box to come up. Since it seems
to not load the main form until the OK button is clicked, I'm wondering if
there is a way for the main form to load at the same time as the message box
that sits atop the main form?

Thanks
David
 
Are you wanting the message box to stay visible until the form has completed
loading and is visible?
 

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

Back
Top