9

Is it possible to debug multiple applications, on one machine, in Delphi XE2 at the same time? I have two (actually, three, but the middle one works fine) that send messages to each other. I would like to be able to debug both programs at the same time. Is this possible? If so, how?

Thanks!

  • 1
    possible duplicate of [How do I run all projects in a project group?](http://stackoverflow.com/questions/2154343/how-do-i-run-all-projects-in-a-project-group) – gabr Oct 20 '11 at 06:26

1 Answers1

10

Yes, this is possible.

Make sure all of the projects you want to debug in your project group have been compiled. Then right click and select "Run" on each project you want to debug.

I just tried this in XE2 with two very simple VCL applications and it works as expected, including breakpoints in both projects.

Bruce McGee
  • 15,076
  • 6
  • 55
  • 70