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.

 All Forums
 Development Tools
 ASP.NET
 How to interlinked between projects in a Solution

Author  Topic 

Mamatha
Posting Yak Master

102 Posts

Posted - 2005-05-23 : 02:16:40
Hi

I 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.



Damian
Ita erat quando hic adveni.
Go to Top of Page

Mamatha
Posting Yak Master

102 Posts

Posted - 2005-05-23 : 03:38:32
Hi

I 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
Go to Top of Page

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.

Damian
Ita erat quando hic adveni.
Go to Top of Page
   

- Advertisement -