Splash screen

S

sliver

Hello,

I got a problem with displaying a splashscreen. I want a Form (splash
screen) to be shown while the main Form is created in the background.

I currently do this by

main {
Application.Run(new Splashscreen());
}
---

public Splashscreen() {
....
loadMainForm();
mainForm.Show();
....
}

---

But this code will not show the splash screen, because first the splash
screen is created an then the application is loaded.

What can I do to show the splash screen while loading the main form?

tia
sliver
 

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

Top