Step6Dlg.cpp
上传用户:tjyzx0508
上传日期:2013-02-16
资源大小:254k
文件大小:3k
源码类别:

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. // Step6Dlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "Step6.h"
  5. #include "Step6Dlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CStep6Dlg dialog
  13. CStep6Dlg::CStep6Dlg(CWnd* pParent /*=NULL*/)
  14. : CDialog(CStep6Dlg::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CStep6Dlg)
  17. // NOTE: the ClassWizard will add member initialization here
  18. //}}AFX_DATA_INIT
  19. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  20. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  21. }
  22. void CStep6Dlg::DoDataExchange(CDataExchange* pDX)
  23. {
  24. CDialog::DoDataExchange(pDX);
  25. //{{AFX_DATA_MAP(CStep6Dlg)
  26. // NOTE: the ClassWizard will add DDX and DDV calls here
  27. //}}AFX_DATA_MAP
  28. }
  29. BEGIN_MESSAGE_MAP(CStep6Dlg, CDialog)
  30. //{{AFX_MSG_MAP(CStep6Dlg)
  31. ON_WM_PAINT()
  32. ON_WM_QUERYDRAGICON()
  33. //}}AFX_MSG_MAP
  34. END_MESSAGE_MAP()
  35. /////////////////////////////////////////////////////////////////////////////
  36. // CStep6Dlg message handlers
  37. BOOL CStep6Dlg::OnInitDialog()
  38. {
  39. CDialog::OnInitDialog();
  40. // Set the icon for this dialog.  The framework does this automatically
  41. //  when the application's main window is not a dialog
  42. SetIcon(m_hIcon, TRUE); // Set big icon
  43. SetIcon(m_hIcon, FALSE); // Set small icon
  44. // TODO: Add extra initialization here
  45. return TRUE;  // return TRUE  unless you set the focus to a control
  46. }
  47. // If you add a minimize button to your dialog, you will need the code below
  48. //  to draw the icon.  For MFC applications using the document/view model,
  49. //  this is automatically done for you by the framework.
  50. void CStep6Dlg::OnPaint() 
  51. {
  52. if (IsIconic())
  53. {
  54. CPaintDC dc(this); // device context for painting
  55. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  56. // Center icon in client rectangle
  57. int cxIcon = GetSystemMetrics(SM_CXICON);
  58. int cyIcon = GetSystemMetrics(SM_CYICON);
  59. CRect rect;
  60. GetClientRect(&rect);
  61. int x = (rect.Width() - cxIcon + 1) / 2;
  62. int y = (rect.Height() - cyIcon + 1) / 2;
  63. // Draw the icon
  64. dc.DrawIcon(x, y, m_hIcon);
  65. }
  66. else
  67. {
  68. CDialog::OnPaint();
  69. }
  70. }
  71. // The system calls this to obtain the cursor to display while the user drags
  72. //  the minimized window.
  73. HCURSOR CStep6Dlg::OnQueryDragIcon()
  74. {
  75. return (HCURSOR) m_hIcon;
  76. }
  77. #include "msword9.h"
  78. void CStep6Dlg::OnOK() 
  79. {
  80. CLSID clsid;
  81. HRESULT hr;
  82. hr=::CLSIDFromProgID(L"Word.Application",&clsid); //通过ProgID取得CLSID
  83. if(FAILED(hr))
  84. {
  85. AfxMessageBox(_T("不会吧,竟然没有安装OFFICE"));
  86. return;
  87. }
  88. IUnknown *pUnknown=NULL;
  89. IDispatch *pDispatch=NULL;
  90. _Application app=NULL;
  91. Selection sel=NULL;
  92. hr=::GetActiveObject(clsid,NULL,&pUnknown); //查找是否有WORD程序在运行
  93. if(FAILED(hr))
  94. {
  95. AfxMessageBox(_T("没有正在运行中的WORD应用程序"));
  96. return;
  97. }
  98. try
  99. {
  100. hr=pUnknown->QueryInterface(IID_IDispatch,(LPVOID *)&app);
  101. if(FAILED(hr)) throw(_T("没有取得IDispatchPtr"));
  102. pUnknown->Release(); pUnknown=NULL;
  103. sel=app.GetSelection();
  104. if(!sel) throw(_T("没有正在编辑的文档"));
  105. sel.WholeStory(); //全部选择
  106. CString str=sel.GetText(); //取得文本
  107. SetDlgItemText(IDC_EDIT1,str); //显示到编辑窗中
  108. }
  109. catch(LPCTSTR lpErr)
  110. {
  111. AfxMessageBox(lpErr);
  112. }
  113. if(pUnknown) pUnknown->Release();
  114. if(sel) sel.ReleaseDispatch();
  115. if(app) sel.ReleaseDispatch();
  116. }