Hello all,

My application produces plenty of memory leaks, and I'm unsure of how to track them down.

This app uses several different DLLs, the DLL projects and the app project are all in the same solution, and the following lines are included in the "stdafx.h" file from each project :
Code:
#ifdef _DEBUG
#define _CRTDBG_MAP_ALLOC
#include <crtdbg.h>
#endif
Despite this, I don't get any object information or line numbers in the output window, just the allocation order numbers. I tried breaking into them, but the problem is, they vary at each execution !

Am I missing something here?

Thanks for your help in advance!