testDlg.h
上传用户:fda_625
上传日期:2007-01-02
资源大小:32k
文件大小:2k
源码类别:

文件操作

开发平台:

Visual C++

  1. // testDlg.h : header file
  2. //
  3. #if !defined(AFX_TESTDLG_H__F45A8327_C1E9_11D2_A0C4_0080C7F3B56B__INCLUDED_)
  4. #define AFX_TESTDLG_H__F45A8327_C1E9_11D2_A0C4_0080C7F3B56B__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. #include "WordEventSink.h"
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CTestDlg dialog
  11. class CTestDlg : public CDialog
  12. {
  13. // Construction
  14. public:
  15. CTestDlg(CWnd* pParent = NULL); // standard constructor
  16. void OnDocClose();
  17. // Dialog Data
  18. //{{AFX_DATA(CTestDlg)
  19. enum { IDD = IDD_TEST_DIALOG };
  20. // NOTE: the ClassWizard will add data members here
  21. //}}AFX_DATA
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CTestDlg)
  24. protected:
  25. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. protected:
  29. HICON m_hIcon;
  30. // Generated message map functions
  31. //{{AFX_MSG(CTestDlg)
  32. virtual BOOL OnInitDialog();
  33. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  34. afx_msg void OnPaint();
  35. afx_msg HCURSOR OnQueryDragIcon();
  36. virtual void OnOK();
  37. virtual void OnCancel();
  38. //}}AFX_MSG
  39. DECLARE_MESSAGE_MAP()
  40. private:
  41. void DumpComError(const _com_error& e) const;
  42. void DumpOleError(const COleException& e) const;
  43. void DumpDispatchError(const COleDispatchException& e) const;
  44. BOOL GetPageCount(DWORD& PageCount);
  45. Word::_ApplicationPtr m_pWord;
  46. CWordEventSink m_WordEventSink;
  47. Word::_DocumentPtr m_pDoc;
  48. };
  49. //{{AFX_INSERT_LOCATION}}
  50. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  51. #endif // !defined(AFX_TESTDLG_H__F45A8327_C1E9_11D2_A0C4_0080C7F3B56B__INCLUDED_)