Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Let's say I have an EXE named A, which loads a DLL named B, which in turn loads another DLL named C. All of these three are written in Delphi. I have the source for all three.

If I want to debug DLL B, I have no problem. I go to Run|Parameters and enter A.EXE as the host. When I click run, Delphi runs A, which loads B, and I can debug to my heart's content.

But debugging DLL C is another matter.
It looks like Delphi will only let me debug a DLL loaded directly from the EXE. But this is a DLL loaded from another DLL.

Is there some way to do this? Thanks.

This is Delphi 7.

share|improve this question
I think modern Delphi debugger lets you debug all the way through no probs. – David Heffernan Oct 18 '12 at 22:46
Delphi-XE2 has an option to 'Debug spawned processes' under Options|Dubugger Options|Embarcadero Debuggers. Does Delphi-7 have this? Is it 'checked'? Have you tried setting Run|Params for DLL C to A.EXE? – James L. Oct 18 '12 at 23:00
Another thought, you might be able to load the symbol table after the DLL C is loaded. XE2 has a debug 'Modules' window where you can right-click a module and force it to reload the symbol table, as discussed here: stackoverflow.com/a/12707464/822072 -- perhaps Delph-7 has the same? – James L. Oct 18 '12 at 23:10
James L., "Debug spawned processes" did the trick. Thank you. I never knew that was there before. If you'll put that in an answer, I'll accept it. – user1008646 Oct 19 '12 at 10:34
Are you sure you can't open DLL "C" in the Delphi IDE and set it's "host" as A.Exe? I really doubt Delphi cares much about how the DLL's are loaded, direct or indirect. I'd look for the problem somewhere else, maybe your "B" DLL is loading a different "C" DLL from a different location, maybe you're not setting the brakepoints in routines that are being called. – Cosmin Prund Oct 22 '12 at 8:50

1 Answer

If I catch you right then you want different projects of DLL to be debug while debugging your application.

Steps for this :

  1. Open your Application Project in Delphi
  2. Goto View-> Project Manager (Ctrl+Alt+F11)
  3. Right Click on Project Group Present then Select Add Existing Project.
  4. Select your DLL project(s)
  5. Then finally select which project needs to be activated.

you can also refer to this Link

Good Luck

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.