Tagged Questions

1
vote
2answers
214 views

C# solution referencing a pre-built .exe

I have a project which is the core of our application. We build several DLLs and an EXE. We then have custom projects which use pre-built core DLLs and EXE and add customisations/extra bits as ...
1
vote
4answers
384 views

Visual Studio 2008 - Sharing Data in C++/C# Multi Project Solution

I have a solution with 2 projects: a c++ main project a c# project (display simulator) Today these 2 apps share data using a loopback TCP client/server connection, but that's not very optimal ...
0
votes
2answers
55 views

Calling function from a class in project 1 from project 2

I have a c# solution. For the solution i have 2 projects setup. One is a web application and one is a class library. I created a class in the class library that has a static method that i want to ...
0
votes
1answer
213 views

Multi-project solution & cross-application data handling

Time for another "what am I overlooking" question! Thanks in advance for your guidance, and as ever, you guys rock! :) .NET 2010 Winforms, but I only have the Express version. I have 05 Pro, but ...
0
votes
2answers
150 views

Raise custom event in multi-project

it concerns following: I have two projects which should exists more or less independently from each other. Project one is a kind File System Watcher. The other one cosnists of my UI. The file watcher ...
0
votes
6answers
402 views

C# Solution - How many projects?

I googled this a little but couldn't find a good result. Right now I'm building a web site and I'm trying to make it as correct as possible from a design point of view from the beginning. The ...