How to hide form when another form opens?
-
I have a form where there is a button and i want to launch an another form by the help of that button which is done but when second form opens it doesnt close the first one as i did many tries. Following is my code snippet
private void LoadGameButton_Click(object sender, EventArgs e) { TicTacToe tic=new TicTacToe(); tic.Show(); log = new Login(); log.Close(); // or i tried hide and different ways here but still login form appear }
Please help -
I have a form where there is a button and i want to launch an another form by the help of that button which is done but when second form opens it doesnt close the first one as i did many tries. Following is my code snippet
private void LoadGameButton_Click(object sender, EventArgs e) { TicTacToe tic=new TicTacToe(); tic.Show(); log = new Login(); log.Close(); // or i tried hide and different ways here but still login form appear }
Please help -
Hello,
shah123 wrote:
log = new Login(); log.Close(); // or i tried hide and different ways here but still login form appear
this creates a new instance of o Form and closes it directly after creaton. Just add: this.Hide(); All the best, Martin
Thanks a million. It worked.
-
Thanks a million. It worked.