Click here to Skip to main content
15,891,837 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 55K   3.2K   20  
A scroll window that surpasses the 16-bit limit and can be hosted by a dialog.
#if !defined(AFX_MYVIEW_H__A1451437_C89A_48CD_AC2B_81B4E49CB8AF__INCLUDED_)
#define AFX_MYVIEW_H__A1451437_C89A_48CD_AC2B_81B4E49CB8AF__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// MyView.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// MyView window

class MyView : public CWnd
{
// Construction
public:
	MyView();

// Attributes
public:

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(MyView)
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~MyView();

	// Generated message map functions
protected:
	//{{AFX_MSG(MyView)
		// NOTE - the ClassWizard will add and remove member functions here.
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_MYVIEW_H__A1451437_C89A_48CD_AC2B_81B4E49CB8AF__INCLUDED_)

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