Browse - programming tips - gdiplus delete crashDate: 2007dec18 Platform: win32 Lanuage: C++ Q. When I am using GDI+ my program crashes when I delete an object. Why? A. Its probably because your program is set to debug. This overrides C++ new and delete. Instead of: delete pMyObj; Use DllExports::GdipFree(pMyObj); This page has an answer but it doesn't work for me http://support.microsoft.com/kb/317799 Add a commentSign in to add a comment |