I\'m building an application that have a initial form for login and if the user is authorized this form (login) should close and the application main form should open.
I
This is how you do it:
FormSecond f = new FormSecond(); f.Show(); this.Close();