Click here to Skip to main content
15,897,187 members
Articles / Desktop Programming / MFC

ZSplitter: Adding Automatic Splitting for Dialog Controls

Rate me:
Please Sign up or sign in to vote.
4.88/5 (14 votes)
28 May 2001 633.8K   6.4K   58  
A set of classes that provide automatic adding necessary splitters in your dialogs
// ZSplitterDlg.cpp
// Designed by Mike Melnikov  zmike.net

#include "stdafx.h"

#include "ZSplitterDlgEx.h"

#include <assert.h>

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

BEGIN_MESSAGE_MAP(ZSplitterDlgResizable,ZSplitterDlgResizable::inherited)
  ON_MESSAGE (WM_MOVE_ZSPLITTER, OnMoveElement)
END_MESSAGE_MAP()

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.


Written By
Web Developer
Russian Federation Russian Federation
Mike has been programming in C/C++ for 11 years and Visual C++/MFC for 4 years. His background includes pure and applied mathematics, engineering and physics, and he is currently based in Moscow, Russia.

Comments and Discussions