How to Use RichEditControl 4.1 in CRichEditView | CodeGuru

How to Use RichEditControl 4.1 in CRichEditView

By Flaviu Marc (mesajflaviu) Introduction The last available version of Windows RichEdit control is 4.1. However, the MFC framework still uses older versions of this control. For example, MFC 6.0 uses RichEdit control 1, which is very obsolete and even newer MFC versions that shipped with Visual Studio 2005-2010 use RichEdit control 2 or 3. […]

Written By
CodeGuru Staff
CodeGuru Staff
Apr 16, 2012
1 minute read
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

By Flaviu Marc (mesajflaviu)

Introduction

The last available version of Windows RichEdit control is 4.1. However, the MFC framework still uses older versions of this control. For example, MFC 6.0 uses RichEdit control 1, which is very obsolete and even newer MFC versions that shipped with Visual Studio 2005-2010 use RichEdit control 2 or 3.

How to Overcome This?

In order to use RichEdit control 4.1 in CRichEditView MFC class, and enjoy its new features, we can do the following steps:

Step 1

In the MFC application class (derived from CWinApp) load the MSFTEDIT.DLL library module, which contains RichEdit control 4.1.

BOOL CRichEdit41App::InitInstance()
{
   // Load RichEdit 4.1 library
   HMODULE hRE41Module = ::LoadLibrary(_T("MSFTEDIT.DLL"));
   if(NULL == hRE41Module)
   {
      AfxMessageBox(_T("RichEdit 4.1 library could not be loaded"));
      return FALSE;
   }
   // ...
}

Step 2

In the MFC view class (derived from CRichEditView) constructor, set the window class name for RichEdit 4.1, which is “RICHEDIT50W“.

// Note: MSFTEDIT_CLASS is not defined in MFC6.0 and older
#ifndef MSFTEDIT_CLASS
#define MSFTEDIT_CLASS L"RICHEDIT50W";
#endif

CRichEdit41View::CRichEdit41View()
{
   m_strClass = MSFTEDIT_CLASS;
}
Advertisement

Step 3

In the WM_DESTROY message handler, move below the base class method call.
Note: this step is necessary in MFC6.0 and older.

void CRichEdit41View::OnDestroy()
{
   // CRichEditView::OnDestroy(); // <-- move this line below
   COleClientItem* pActiveItem = GetDocument()->GetInPlaceActiveItem(this);
   if (pActiveItem != NULL && pActiveItem->GetActiveView() == this)
   {
      pActiveItem->Deactivate();
      ASSERT(GetDocument()->GetInPlaceActiveItem(this) == NULL);
   }
   CRichEditView::OnDestroy(); // <-- moved from above
}

Demo Application

The project attached here demonstrates how to load RichEdit 4.1 in a simple MFC-based application, and then enjoy its features like multiple Undo/Redo.

Resources

CodeGuru Logo

CodeGuru covers topics related to Microsoft-related software development, mobile development, database management, and web application programming. In addition to tutorials and how-tos that teach programmers how to code in Microsoft-related languages and frameworks like C# and .Net, we also publish articles on software development tools, the latest in developer news, and advice for project managers. Cloud services such as Microsoft Azure and database options including SQL Server and MSSQL are also frequently covered.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.