S
-Steve-
In my app I have a form that after the user hits ok switches to another
form, never to return to the first form again.
I thought this code would do the trick:
UserInfo child = new UserInfo();
child.Show();
this.Visible = false;
And it works fine except that when I close the UserInfo form the app remains
open, it's just not visible. What's the better way to handle this?
Steve
form, never to return to the first form again.
I thought this code would do the trick:
UserInfo child = new UserInfo();
child.Show();
this.Visible = false;
And it works fine except that when I close the UserInfo form the app remains
open, it's just not visible. What's the better way to handle this?
Steve