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
 

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