View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
RB Smissaert RB Smissaert is offline
external usenet poster
 
Posts: 2,452
Default Trouble finding cause for Excel crash

Trying to trace a bug that causes an Excel crash.
The trouble is it doesn't happen when I step through the code. I think it
somehow has to do with a call to a SQLite wrapper dll, but it is not
consistent.

When I get the Visual C++ debugger up it consistently points to this bit of
assembly:

77124CB4 8B 40 FC mov eax,dword ptr [eax-4]

Something to do with OLEAUT, but that doesn't help me much.
Is there anything one could do with a C++ debugger to pin this down?

I suppose in the end the only way is to do a log of lots of lines of code.

RBS