I am trying to debug old DLLs (for which I have the project and source code) used by an APP (which I cannot build anymore). The project was developed using Visual Studio 6, so this is what I am using as well.
What I tried without success:
- Added MsgBox in a routine that I know for sure it is called by the APP (so I can have a pause to attach the debugger to the process)
- Built the Debug version of the DLL
- Deployed the DLL and PDB in the folder where the APP is (overwriting the original DLL)
- Added the path to deployed DLL in Project Settings -> Debug -> Additional DLLs (VS 6)
- Started the APP. The MsgBox popup showed. I attached to the APP process and added breakpoints
- Breakpoints are hit but the "Go To Source" does not reveal the sources
Any idea what I am doing wrong? Thank you in advance!