For Visual Studio IDE we can detect leaks by using CRT debugger functions
#define _CRTDBG_MAP_ALLOC
#include <stdlib.h>
#include <crtdbg.h>
void main()
{
_CrtDumpMemoryLeaks();
}</crtdbg.h></stdlib.h>
This will dump leaks if any to the Output window. Check this link :
http://msdn.microsoft.com/en-us/library/e5ewb1h3(v=vs.80).aspx[
^]
Any way this seems to a nice tool. I will try it for sure. My 5