Hi.
I have tried to make a Splash screen on my program but it always shows behind the main form. How do I fix so that the splashscreen is in the forground instead of the main form?
Printable View
Hi.
I have tried to make a Splash screen on my program but it always shows behind the main form. How do I fix so that the splashscreen is in the forground instead of the main form?
set the splash screen's zorder to 0.
Or:
Code:Splash.Show 1
Better to load it non-modal, then when the main form behind it loads, set the slashscreen form to be always on top of the main form. This means that the user can flip between other programs, andthe splash screen is only on top when you app has focu, not when another app has focus.
- gaffa