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
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