레이블이 MFC인 게시물을 표시합니다. 모든 게시물 표시
레이블이 MFC인 게시물을 표시합니다. 모든 게시물 표시

2015년 3월 20일 금요일

MS_NO_COREDLL



python27_d.lib 을 못찾을 때

#define MS_NO_COREDLL
#include

2014년 7월 1일 화요일

CWnd::~CWnd


Warning: calling DestroyWindow in CWnd::~CWnd; OnDestroy or PostNcDestroy in derived class will not be called.


2012년 5월 2일 수요일

Picking & Dragging

유용하게 자주 쓰는 코드 한 줄

void DWnd::OnLButtonDown(UINT nFlags, CPoint point)
{
PostMessage( WM_NCLBUTTONDOWN, HTCAPTION,
MAKELPARAM( point.x, point.y));
CWnd::OnLButtonDown(nFlags, point);
}