How to Show Form
C#
3
Posts
3
Posters
0
Views
1
Watching
-
Hi All, I have two forms in my app. I need to have functionality that when i click on nextButton on formA, formB should show and fromA should either hide it self or unload. Please help. thanks, Asif.
A.Asif
-
Hi All, I have two forms in my app. I need to have functionality that when i click on nextButton on formA, formB should show and fromA should either hide it self or unload. Please help. thanks, Asif.
A.Asif
Yup. Visible property would be good. Try something like this:
this.Visible = false; FormB newForm = new FormB(); newForm.ShowDialog(); this.Visible = true;
My current favourite word is: PIE! I have changed my name to my regular internet alias. But don't let the 'Genius' part fool you, you don't know what 'SK' stands for. -
The Undefeated