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 am trying to transition to 2010. If I need to upgrade... well, maybe I'll stick with 05, since this is just for my own amusement.

I want to make a multi-application suite for a project I've got in mind. The project has several components that should interact together, but still be robust and stand-alone.

The components include:

1) A Notification Area utility (I/E System Tray) - I anticipate using this as a quick-launch, data-passing medium, and other minor things. I'd like to keep it as small as possible. Double-click to launch main menu, right-click to launch another app.

2) The Main Menu. This is what would start if you run the program normally, and essentially organizes the other apps.

3-6) These other apps each do some things, but are fairly self-contained.

.

.

Question 1: What is a multi-app or multi-project solution called? I think I'm missing a buzz-word here, because my search-fu isn't getting any results. For the most part, I'm looking for some pointers, more precise vocabulary, and some suggestions on what existing features can handle these sorts of things.

Question 2: How can I make each of these apps/projects able to launch independently? I don't want to go through the Main Menu each time; I want the ability to start the app from Program Files directly. Despite that requirement, I also need to check if the Notification Utility is running, and start it if it isn't. The Utility should be running any time any other app is running, and closing it would close all the other apps. Also, the Notification (and Main Menu) apps need to be able to start the other apps.

Question 3: How can I pass data between the windows?
The concept in my head is to have Window A send a packet to the Utility, which would then pass it to Window B. Window B also needs to send a confirmation packet.

Question 4: How can I set up one of the apps (the Notification Utility)

link|improve this question

71% accept rate
feedback

1 Answer

Question 1 - "Solutions" typically contain one or more projects.

link|improve this answer
I know, but searching for "solution" doesn't accomplish much. All the data-handling questions I've seen are to pass data between various Windows within the same project. I've done this before, with little trouble. Never done cross-application data sharing though. – Tinkerer_CardTracker Mar 1 '11 at 4:12
I would think that you should not be using project/solution for your search at all. You should be searching for cross-application communication on windows using C# as this type of thing is not specific to Visual Studio as 3 applications in 1 solution is no different to 3 applications in 3 solutions - VS provides an interface for easily managing associated projects but there is no intrinsic link between them other than they all display in the solution explorer and it's easy to reference them from the Projects tab – Rob Mar 1 '11 at 4:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.