0

My Delphi module uses a C++ DLL function. While debugging in the Delphi IDE, I need to step into a C++ function in Visual C++. How can I do it?

2 Answers 2

1

What you ask for is not possible. Only one debugger can be attached to the process at a time, so while Delphi is stepping through the Delphi module, Visual Studio cannot debug the DLL.

Your only hope is if you have C++Builder installed. Then you can let it debug both the Delphi module and the DLL from within a single IDE instance.

Sign up to request clarification or add additional context in comments.

Comments

0

if it is a third party dll with no source and symbol you are out of luck it it is your own dll builded with VC you can set the delphi exe as the process that load the DLL

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.