myrich.cpp
上传用户:xztxsm
上传日期:2007-01-02
资源大小:23k
文件大小:2k
源码类别:

RichEdit

开发平台:

Visual C++

  1. // myrich.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "myrich.h"
  5. #include "myrichDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. HINSTANCE   g_hInstRichEdit = NULL;
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CMyrichApp
  14. BEGIN_MESSAGE_MAP(CMyrichApp, CWinApp)
  15. //{{AFX_MSG_MAP(CMyrichApp)
  16. //}}AFX_MSG
  17. ON_COMMAND(ID_HELP, CWinApp::OnHelp)
  18. END_MESSAGE_MAP()
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CMyrichApp construction
  21. CMyrichApp::CMyrichApp()
  22. {
  23. }
  24. /////////////////////////////////////////////////////////////////////////////
  25. // The one and only CMyrichApp object
  26. CMyrichApp theApp;
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CMyrichApp initialization
  29. BOOL CMyrichApp::InitInstance()
  30. {
  31. // Standard initialization
  32. #ifdef _AFXDLL
  33. Enable3dControls(); // Call this when using MFC in a shared DLL
  34. #else
  35. Enable3dControlsStatic(); // Call this when linking to MFC statically
  36. #endif
  37. /* g_hInstRichEdit = LoadLibrary(TEXT("RICHED32.DLL"));
  38.     if (!g_hInstRichEdit)
  39.     {
  40.         AfxMessageBox("Can't load dll");
  41.         return (FALSE);
  42.     }
  43. */
  44. CMyrichDlg dlg;
  45. m_pMainWnd = &dlg;
  46. int nResponse = dlg.DoModal();
  47. if (nResponse == IDOK)
  48. {
  49. }
  50. else if (nResponse == IDCANCEL)
  51. {
  52. }
  53. // Since the dialog has been closed, return FALSE so that we exit the
  54. //  application, rather than start the application's message pump.
  55. return FALSE;
  56. }