Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
Mamatha
Posting Yak Master
102 Posts |
Posted - 2005-05-23 : 02:16:40
|
HiI have a an application in C#.NET.In that, C#.NET application a single solution exlorer can have mutiple projects.Now i want to use one project form into another project in that same solution explorer,How can i use this?How can i interlinked between those projects?Please give me a solution.Thanks in advance.Mamatha |
|
Merkin
Funky Drop Bear Fearing SQL Dude!
4970 Posts |
Posted - 2005-05-23 : 02:26:29
|
Right click on "References", add a reference, and choose one from the Project tab.DamianIta erat quando hic adveni. |
 |
|
Mamatha
Posting Yak Master
102 Posts |
Posted - 2005-05-23 : 03:38:32
|
HiI tried to add a reference from project tab,but it doesn't add a reference because those projects have exe files instead of dll,how can i make dll from exe files.Please give me an idea,thanks in advance.Mamatha |
 |
|
Merkin
Funky Drop Bear Fearing SQL Dude!
4970 Posts |
Posted - 2005-05-23 : 05:44:55
|
The easiest way, is put the common code in a library, and reference that from each project that needs it.the .NET framework actually allows you to reference an .EXE, but Visual Studio won't.DamianIta erat quando hic adveni. |
 |
|
|
|
|