user347312
user347312

Reputation: 25

Show a form after Application Load

I want to show a dialog box or form immediately after my application loads. If I place a .showdialog in the main form load event the dialog shows before the application shows.

I’m trying to give some user tips when they load my application.

Thanks

Upvotes: 1

Views: 1360

Answers (2)

Hans Passant
Hans Passant

Reputation: 941227

The Shown event is pretty much designed for this.

Upvotes: 2

Raj
Raj

Reputation: 1770

Put the dialog form invocation in the Form_Activate event of your main form.

Upvotes: 0

Related Questions