Debuging C++ via Excel

  • Thread starter Thread starter MFRASER
  • Start date Start date
M

MFRASER

I need some help. We have a dll that was developed in C++, OLEDB provider
that is used in house. This dll is access from Excel using the GUID. How
do I step from Excel into the C++ dll?
 
MFRASER said:
I need some help. We have a dll that was developed in C++, OLEDB provider
that is used in house. This dll is access from Excel using the GUID. How
do I step from Excel into the C++ dll?

Set Excel as the debug executable or launch Excel and then attach to the
process in the debugger.
 
MFRASER said:
I need some help. We have a dll that was developed in C++, OLEDB provider
that is used in house. This dll is access from Excel using the GUID. How
do I step from Excel into the C++ dll?

In addition to Julie's suggestion you can instrument your source with a call
to DebugBreak() at the point at which you'd like to start the debugger.

Regards,
Will
 
Back
Top