I have a Splash Screen to my program.
And when the splash end , exec the code
this.Hide();
frmLogin o = new frmLogin();
o.show();
And it works but the splash screen go invisible and when i close the program by my custom exit button it's only closing the current form. But my splash screen is still hidden and appears the app name to task manager. How i can close that currently opened form and the invisible ones with my custom button ?