views:

148

answers:

1

I want to run multiple VS 2005 instance at the same time. Each instance has the different projects. But hardware restrictions limits me. Is there any way doing this?

I am trying to run from debug\program.exe. But it does not work.

Thanks in advance

A: 

Are the projects related? You could wrap them up in a single solution and then keep one instance of Visual Studio alive. Is that what you are talking about?

j0rd4n
ok it works. But I need to debug all programs at the same time. I need to "Start without debugging". If I collect all project in one solution, I need to start all of them "Start new Instance" which opens the debug window. But. It is not important for me now. Thanks your reply.
I'm a little confused by your comment. Do you need to 'debug' or 'run' all projects at the same time? You said you needed to 'debug' and 'start without debugging'. You can do this by going to the solutions configuration manager and enabling multiple startup projects when debugging.
j0rd4n
yes, I had a mistake. My goal is to run.
Sure, just access the solution properties and specify multiple startup projects. When you use the run command in Visual Studio, it will launch all of specified projects at once.
j0rd4n
This answer is exactly what I need. Thanks alot.