how to load the previously hidden form in C#
-
Hi all I am developing one installation wizard. I have one issue. If i click the next button I made the current form visible = false and creating instance for the next from and showing the form. There problem I facing is, I dont know how to show the previous form by hidding the current form. Can anybody help me please.... Thanks kesavan kesavan
-
Hi all I am developing one installation wizard. I have one issue. If i click the next button I made the current form visible = false and creating instance for the next from and showing the form. There problem I facing is, I dont know how to show the previous form by hidding the current form. Can anybody help me please.... Thanks kesavan kesavan
CurrentFormName.Hide PreviousFormName.Show Obviously that's VB code, but you should be able to figure out the C# equivalent pretty easily.
-
CurrentFormName.Hide PreviousFormName.Show Obviously that's VB code, but you should be able to figure out the C# equivalent pretty easily.
Just to be clear - if you're inside the current form, you need to only call Hide, and specifying the name of the form classes won't work, you need to specify the name of form instances that are visible within the scope of the method that's got the call in it
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog