Simon
Simon

Reputation: 1684

Debugging different projects in VS6

I have 3 projects in a VS6 workspace.

One is the main program, which calls - depending on configuration - one or both other progams. To call the other programs a exe is executed.

If I want to debug and set breakpoints in one of the subsequent programs, I get an error that breakpoints could not be set and have been deactivated.

Are there any VS6 settings I can check?

This is a legacy tool and neither the architecture nor VS6 can be changed. To make things worse I am not very familiar with VS6.

Upvotes: 1

Views: 143

Answers (2)

RED SOFT ADAIR
RED SOFT ADAIR

Reputation: 12218

I don't remember exactly the behavior of VC6, but i think you can start 3 instances of Visual Studio, each containing one of the projects (you'll have to create 3 different workspaces). Within each instance you can debug one program. This at least worked with later Visual Studio 2005.

Upvotes: 1

Hans Olsson
Hans Olsson

Reputation: 55001

A common reason for that error is if you have set one or more of the components to build in Release mode. Make sure that they're all set to build in Debug mode.

Can't remember where those settings are I'm afraid, but I think they're fairly easy to find (under some project menu?).

Upvotes: 1

Related Questions