Internet mail look | CodeGuru

Internet mail look

. Having an Internet Mail look can be a bit hard to handle, but it could be quite rewarding . This MFC42 code shows you how to provide this look in your apps. . The trick is to create a splitter window using another’s handle. You can add any view you wish depending on the […]

Written By
CodeGuru Staff
CodeGuru Staff
Jan 24, 1999
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

.

Having an Internet Mail look can be a bit hard to
handle, but it could be quite rewarding .

This MFC42 code shows you how to provide this
look in your apps.

.

The trick is to create a splitter window using another’s handle. You can add any view you wish depending on the nature of your app. The image above shows a TreeView, RichView, and a FormView.

BOOL CMainFrame::OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext)
{
	if(!m_splitterWnd1.CreateStatic(this, 1,2) ||
	   !m_splitterWnd1.CreateView(0, 0, RUNTIME_CLASS(CSplitterView), CSize(100,0), pContext) ||
	   !m_splitterWnd2.CreateStatic(&m_splitterWnd1, 2, 1, WS_CHILD | WS_VISIBLE, m_splitterWnd1.IdFromRowCol(0,1)) ||
	   !m_splitterWnd2.CreateView(0, 0, RUNTIME_CLASS(CMFormView), CSize(0, 355),pContext) ||
	   !m_splitterWnd2.CreateView(1, 0, RUNTIME_CLASS(CMRichView), CSize(0, 0),pContext))
		{
			return FALSE;
		}
	return TRUE;
}


Download Source Code and Example (41 Kb)

Last updated: 21 June 1998

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.