Form navigation?
Hey all what im trying to do is have a button that when clicked brings up a new form for the using to enter information on it. I did this with the following code.
this.Visible=false;
frmNewProject newProject = new frmNewProject();
newProject.Show();
What i need to know is how do i go back to my Main form now without creating a new instance of it. When i do frmMain. i can only access a few of its properties like active form i cant use the enabled or visible properties or use the show meathod.
Thx in advance, Ryan.
ryan.vlasveldPosted Jan 3, 2005, 4:56 PM
ferasdeebPosted Jan 1, 2005, 11:16 AM
alobiucPosted Jan 1, 2005, 4:15 AM
jemmysPosted Dec 31, 2004, 2:38 PM
ryan.vlasveldPosted Dec 31, 2004, 12:08 AM