RichEdit20.cpp
上传用户:zhoucj12
上传日期:2007-01-02
资源大小:15k
文件大小:1k
源码类别:

RichEdit

开发平台:

Visual C++

  1. #include "StdAfx.h"
  2. #include "RichEdit20.h"
  3. #include "MainDialog.h"
  4. #include "RichEditCtrlEx.h"
  5. #ifdef _DEBUG
  6. #define new DEBUG_NEW
  7. #undef THIS_FILE
  8. static char THIS_FILE[] = __FILE__;
  9. #endif
  10. BEGIN_MESSAGE_MAP( CRichEdit20App, CWinApp )
  11. //{{AFX_MSG_MAP( CRichEdit20App )
  12. //}}AFX_MSG
  13. END_MESSAGE_MAP()
  14. CRichEdit20App::CRichEdit20App()
  15. {
  16. }
  17. /////////////////////////////////////////////////////////////////////////////
  18. // The one and only CRichEdit20App object
  19. /////////////////////////////////////////////////////////////////////////////
  20. CRichEdit20App theApp ;
  21. BOOL CRichEdit20App::InitInstance()
  22. {
  23. AfxInitRichEditEx() ;
  24. AfxEnableControlContainer();
  25. #ifdef _AFXDLL
  26. Enable3dControls(); // Call this when using MFC in a shared DLL
  27. #else
  28. Enable3dControlsStatic(); // Call this when linking to MFC statically
  29. #endif
  30. CMainDialog l_Dialog ;
  31. m_pMainWnd = &l_Dialog ;
  32. l_Dialog.DoModal() ;
  33. return FALSE ;
  34. }