Warning: calling DestoryWindow in CWnd::~CWnd OnDestroy or PostNcDestroy in derived class will not be called
★━─…C/C++/MFC 2009. 4. 2. 13:26Warning: calling DestoryWindow in CWnd::~CWnd
OnDestroy or PostNcDestroy in derived class will not be called
윈도우 객체(대화상자 등)를 delete로 삭제 하려고 했을때
위와같은 경고 메시지가 발생한다.
윈도우 객체를 파괴하기 위해 delete 를 사용하면 안되고,
윈도우 객체를 파괴하기 위해선 DestoryWindow() 를 사용해야 한다.
cf) http://ssmhz.tistory.com/176
OnDestroy or PostNcDestroy in derived class will not be called
윈도우 객체(대화상자 등)를 delete로 삭제 하려고 했을때
위와같은 경고 메시지가 발생한다.
윈도우 객체를 파괴하기 위해 delete 를 사용하면 안되고,
윈도우 객체를 파괴하기 위해선 DestoryWindow() 를 사용해야 한다.
cf) http://ssmhz.tistory.com/176