tags:

views:

27

answers:

2

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

+1  A: 

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

Raj
That does the same thing. Shows before the app shows.
Activate fires continuously well the form is active. The Shown Event fires once.
Shiftbit
+1  A: 

The Shown event is pretty much designed for this.

Hans Passant