does listivew_???? make handles leak...?
C / C++ / MFC
1
Posts
1
Posters
0
Views
1
Watching
-
I am dealing with tons of functions, and i am using sendmessage and other macros as well, but somehow each time i use sendmessage the handles in taskmanger get increased, even using createfont as this
Hfont = createfont(.....)
deleteobject(Hfont)but as i know deleteobject will delete the Gdi object, but what abut its handle? I am not sure why this happens, even this
listview_setitemcount(.....)
bty I am destroying my HWND object each time i use X button, so i make a new one (I have no problem with Gdi they all fine) except those handles? has anyone faced this? Update; now 100% sure that using sendmessage(....) increasing my handles 1 time, but why?