memory leak

hi i am spanish and my english is not good

i programming in visual .net and i cant see the memory leak

can you help me with this?

thx people

i see the solution, in .net include this

#define CRTDBG_MAP_ALLOC
#include <stdlib.h>
#include <crtdbg.h>

and call on end app the function _CrtDumpMemoryLeaks to view all memory leaks

It’s easy to know memory leak with VisualStudio .NET
run your project with F5 (debugging mode) when the error appear, the Compiler ask you if you want to break the function, here you can debug easily your program

This topic was automatically closed 183 days after the last reply. New replies are no longer allowed.