Click here to Skip to main content
15,887,214 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am making HRMS project USing ADO.NET Techology with Sql Server....I Will USE GUI to CREate by Visual studio..making Connection will Done by Wizard..So login page has been Made ....Different forms has to be made how to join Differnt form in One form ?
Posted
Comments
R. Giskard Reventlov 14-Jun-12 15:48pm    
Don't quite understand the question - please expand or be clearer.
virang_21 15-Jun-12 1:10am    
Use MDI form if it is windows application

1 solution

You can make form to form navigation by creating the instance of the other form. Like you want to call form2 in form1:
C#
addform add = new addform();
add.showdialog();

or you if want to independently open that form, then use:
C#
add.show();
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900