When I was about to debug C++ program in VS2005,the program didn\'t stop at the breakpoints.
The VS said\"No symbols are loaded for any call stack frame. The source
For whatever reason you don't have the right symbols (.pdb files) in the symbol path. This could be for several reasons:
1) Your binary was compiled more recently than the .pdb files. Try recompiling everything.
2) You are trying to debug a .dll and forgot to copy the .pdb files. Copy those files too.
It's also possible that your code isn't being executed like you think.