Click here to Skip to main content
16,023,339 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How do I go from one form to another available form (existing form) in .NET with C# and use MDI..........I am a new developer in windows based applications.

If anybody has any links for details of my question, please provide me with the information.
Posted
Updated 3-Feb-10 22:11pm
v2

I would suggest this[^] is a great place to start. There's no point in relying on web forums for the most basic questions, start with some books and ask questions from a platform of basic knowledge.
 
Share this answer
 
Just create an object of the form like:
form1 my_form=new form1();
my_form.show();
 
Share this answer
 
v2
"just create an object of the form like:
form1 my_form=new form1();
my_form.show();
"

Except you should NEVER do this. If you want to show a modeless form, make sure it's a member variable, so you can work with it if you need to and so that pushing the button that creates it doesn't create a stream of them (or keep them in a list if this is what you want.)
 
Share this answer
 
v2

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