随笔分类 - win32
摘要:#import "C:\\Program Files\\Common Files\\Microsoft Shared\\OFFICE11\\MSO.DLL" rename( "RGB", "MSORGB" ) using namespace Office; #pragma warning(disable : 4192) #import "C:\\Program Files\\Common File...
阅读全文
摘要:BOOL CRoiDialog::ContinueModal() { if(m_wndToolBar.IsWindowVisible()) { CWnd* pWndParent = m_wndToolBar.GetParent(); m_wndToolBar.OnUpdateCmdUI((CFrameWnd*)this, TR...
阅读全文
摘要:#import "C:\\Program Files\\Common Files\\Microsoft Shared\\OFFICE11\\MSO.DLL" named_guidsusing namespace Office;#import "C:\\Program Files\\Common Files\\Microsoft Shared\\VBA\\VBA6\\VBE6EXT.OLB"#imp...
阅读全文
摘要: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...
阅读全文
摘要:将CListCtrl中的数据导出至Excel
阅读全文