Click here to Skip to main content
15,896,063 members
Articles / Desktop Programming / MFC

Scroll Window

Rate me:
Please Sign up or sign in to vote.
2.44/5 (13 votes)
23 Mar 2008CPOL3 min read 55.1K   3.2K   20  
A scroll window that surpasses the 16-bit limit and can be hosted by a dialog.
// MyView.cpp : implementation file
//

#include "stdafx.h"
#include "ScrollWindowSample.h"
#include "MyView.h"

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

/////////////////////////////////////////////////////////////////////////////
// MyView

extern BOOL _afxGotScrollLines; // defined in wincore.cpp

MyView::MyView()
{
}

MyView::~MyView()
{
}


BEGIN_MESSAGE_MAP(MyView, CWnd)
	//{{AFX_MSG_MAP(MyView)
		// NOTE - the ClassWizard will add and remove mapping macros here.
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()


/////////////////////////////////////////////////////////////////////////////
// MyView message handlers

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.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Unknown
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions