
Help : One or more break points cannot be set
HELLO !
Thanks for replying.
Well my programs layout is like this :
libraries in c/c++ (.lib files) ----> ATL COM DLL ---> VB Client
I am putting the break point from ATL COM project in the C/C++ library
source code ( which are build in debug mode) , while I have added the VB
client 's .exe file in the project setting debug box. And I was able to
debug the same few days back.
---------------------------------------------
Quote:
> > Hello !
> > While placing a break point in an ATL project, which is supported by
many
> > C++ libraries I got the message in the message box :
> > " One or more breakpoints cannot be set and have been disabled .
Execution
> > will stop at the beginning of the program. "
> > What is the meaning of this ?
> > I am building the project in debug mode and want to do debugging .
> > Thanks in Advance
> It probably means that the breakpoint is in DLL code that has not yet
> been loaded, or DLL code that is a release build, built without
> debugging info. You can wait until the program has started, then try to
> set the breakpoint. Or you can set the DLL as the current project
> before starting the debug session. Or you can add the DLL to the
> project settings Debug page, under "additional DLLs".
> --
> Scott McPhillips [VC++ MVP]