display a msgbox after a form loads

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

Guest

Hi all,

I would like to display a msgbox after certain form has loaded. Please
share with me how I can achieve this. Thank you.

Ben



--
 
Hey Ben, use the form's On Load event and place your code for the message box
within it. Depending on what you are trying to accomplish, the form's On Open
event might benefit you as well.
 
xRoachx,

I wwould like to display just a msgbox AFTER a form is loaded, ie, after it
is visible. I won't want to display the msgbox before the form becomes
visible. Thanks for your help.

Ben
 
Try using the Timer Event

Something like this

If Timer <> 0 Then
MsgBox "I am now open"
Me.Form.TimerInterval = 0
End If

lwells
 

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