Display Message After Form is Visible

  • Thread starter Thread starter iamnu
  • Start date Start date
I

iamnu

When I open a Form, I want to display a message AFTER the Form is
visible:
ans = MsgBox("Do you wish to delete the previous Scheduled
Flights", 4, "Scheduled Flights")

The message is currently being displayed BEFORE the Form is visible.

How do I show the Form first, and then the message?
 
Try adding:
    Forms("YourFormNameHere").Visible =  True
on the previous line.

I'm sorry, my question was not at all clear, but you still understood
what I meant.
And surprise to me, your suggestion worked!
I never would have guessed this would be the way to accomplish my
task.
Thank you, sir!
 
Back
Top