Splah form does not show

  • Thread starter Thread starter GB
  • Start date Start date
G

GB

Hi,

Under VB.NET in VS2005 :

In my Main star routine, I start by : MyForms.Splah.show() to display the
Splah form while initializing the app.

The Splah show is activeted , but it remains in a minimized state, so its
useless to have my users attention attracted while waiting.

On release version, it never shows up.

What can I do to make my SPlah form appear while needed?

Regards

GB
 
OK. I found the solution : Just drop the following lines in your Main
routine :
Application.EnableVisualStyles()

Application.DoEvents()

My.Forms.Splash.Show()

My.Forms.Splash.Refresh()

Then do all inits . Dont forget to close and dispose the Splash forms after
all is done.

GB
 
Back
Top