B
Bill Byrnes
I have a small windows form application. I have a main form and a second
form that I open from the main form menu.
The second form opens in a fully maximized windows. I cannot figure out how
to activate or show the main form from the second forms menu (ie, what code
to put in the menu event). I can actiate the second form easily becasue
there is a variable used to create it:
SecondForm secondForm=new SecondForm();
secondForm.Show();
But the way the main (startup) form is initialized, there is no variable.
Any help is appreciated.
Bill Byrnes
form that I open from the main form menu.
The second form opens in a fully maximized windows. I cannot figure out how
to activate or show the main form from the second forms menu (ie, what code
to put in the menu event). I can actiate the second form easily becasue
there is a variable used to create it:
SecondForm secondForm=new SecondForm();
secondForm.Show();
But the way the main (startup) form is initialized, there is no variable.
Any help is appreciated.
Bill Byrnes