I am trying to attach to Word and set break points in the C++ (MFC) source code that I have just gotten access to. I have never done this before and hope that I have omitted some simple step. So far I have been able to:
- Compile the source code in VS (this produces .obj files and a .pdb file, but no .wll file which is confusing)
- Attach to Word in VS and when I run the add-in in Word I can break all and see disassembly code
- Locate myAddin.wll that is running in VS's modules window (VS says no symbols loaded)
I have not been able to:
- load debugging symbols. VS simply ignores me when I right click on myAddin.wll in the modules window and try to load myAddin.pdb
- set a break point in myAddin.cpp and hit it
Anything obvious I am missing? Any good references on this that you know of?