Friday, August 5, 2011

Open a Form of one project from another project

 Look into this Link: http://www.dreamincode.net/forums/topic/78164-open-project-from-another-one-in-visual-c%23/

i.e,

1) create a new project
2) Right click on solution and add existing project (select project from which you want to access form)
3) Add these codes in new project:


ExistingProjectName.Form1 sForm1 = New ExistingProjectName.Form1();
sForm1.show();

No comments:

Post a Comment