tags:

views:

186

answers:

1

Hi,

We are developing a plugin for outlook in visual basic 6.0.We have been facing issues like outlook crash ( due to some objects not getting destroyed or some other reason). One way we have been solving this issue is reading code,commenting code( to observe the affect), logging etc. Are there any other ways of debugging? Are there tools which will help us in knowing what objects are held in memory?

+1  A: 

You can look into the Debugging tools for Windows.

They take a little time to get used to, but the crash dumps can be very helpful...

chills42