This sounds pretty simple, but I am having a time with it. Can someone please give me an example?
Thanks!
Printable View
This sounds pretty simple, but I am having a time with it. Can someone please give me an example?
Thanks!
If your first Form is your mainForm you should only hide it, since closing it will stop your application.Code:Form2 myNewForm = new Form2();
myNewForm.Show();
this.Hide();
//this.Close();
Hope that helps,
Stephan
Hiding it works, but when I close the other form, the splash form stay open in the background. How do I close everything?
Thanks!
try this link ( i posted under my other id Csharp on it ) , it describes using a login form , but the idea is the same for a splash form ... Link
Thanks...
I used:
Application.Exit();