Click here to Skip to main content
15,891,762 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
C#
Form radform = new Addmission();
radform.Show();


i am used above code to open the form.

but i want to open form from sub folder... 

Thanx in advance.
Posted
Comments
Sid_Joshi 26-Jul-14 5:36am    
Same code will works for sub folder form.
Harnis Findoliya 26-Jul-14 5:38am    
if Addmisiion form path is :- Folder/Addmission.cs

so how can open this form
Sid_Joshi 26-Jul-14 5:45am    
Refer Solution1 or Simple Change namespace of Admission Form

1 solution

FormDemo.NewFolder1.Form2 f2 = new FormDemo.NewFolder1.Form2();
f2.Show();
 
Share this answer
 
Comments
Harnis Findoliya 26-Jul-14 5:43am    
here FormDemo is project name ?
Sid_Joshi 26-Jul-14 6:00am    
Yes, you can write your project name instead FormDemo.

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