01 2007 档案
摘要:1. 捕获WM_NCHITTEST: UINT CMyDialog::OnNcHitTest(CPoint point) { UINT nResult = CDialog::OnNcHitTest(point); return nResult == HTCLIENT ? HTCAPTION : nResult; }2. 捕获WM_LBUTTOND...
阅读全文
摘要:class CRecycleFile : private SHFILEOPSTRUCT { public: CRecycleFile() { memset((SHFILEOPSTRUCT*)this,0,sizeof(SHFILEOPSTRUCT)); fFlags |= FOF_SILENT; ...
阅读全文
摘要:BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs){ if (!CFrameWndBase::PreCreateWindow(cs)) return FALSE; cs.dwExStyle &= ~WS_EX_CLIENTEDGE; return TRUE;}BOOL CMainView::PreCreateWindow(CREATESTRU...
阅读全文
摘要:BOOL CRoiDialog::ContinueModal(){ if(m_wndToolBar.IsWindowVisible()) { CWnd* pWndParent = m_wndToolBar.GetParent(); m_wndToolBar.OnUpdateCmdUI((CFrameWnd*)this, TRUE); } return CDialog::ContinueMod...
阅读全文
摘要:将CListCtrl中的数据导出至Excel
阅读全文