Click here to Skip to main content
15,919,613 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi i have a project named employee database
i have another project named modify data in text box


how can i merge both so that in a single project i can have the impact of both
Posted

If by merge you really mean merge as in combine, then you can just copy the files in ProjectB into ProjectA.

If by merge you mean use in another project then you need to right click your project which will use the other two and click Add Reference, then select those two projects.
 
Share this answer
 
Comments
lewax00 19-Aug-11 12:16pm    
You might need to change the namespaces in the files from one project to make classes visible to the files from the other though (without importing the other namespace of course).
fjdiewornncalwe 19-Aug-11 14:53pm    
Importing namespaces with using statements is the point to namespacing. Changing namespaces arbitrarily "to make them visible" is not a valid reason for doing this.
Sergey Alexandrovich Kryukov 20-Aug-11 0:34am    
Namespaces does not effect visibility whatsoever.
--SA
Sergey Alexandrovich Kryukov 20-Aug-11 0:35am    
Correct, a 5.
--SA
Create a new solution, copy the project folders into the new solution's folder. Finally open the solution in VS, right click it, and add the existing projects to it.
 
Share this answer
 
Comments
fjdiewornncalwe 19-Aug-11 14:53pm    
+5. Absolutely the way to do it.

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