Click here to Skip to main content
15,885,939 members
Articles / Desktop Programming / MFC

Property Sheet View

Rate me:
Please Sign up or sign in to vote.
4.76/5 (26 votes)
11 Jun 2001Zlib 360.2K   11.3K   105  
A "Property Sheet"-like view class for MFC.
// tabSample1.h : main header file for the TABSAMPLE1 application
//

#if !defined(AFX_TABSAMPLE1_H__A74CBFBF_C1BB_4405_88E6_0A05A75EC0C5__INCLUDED_)
#define AFX_TABSAMPLE1_H__A74CBFBF_C1BB_4405_88E6_0A05A75EC0C5__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#ifndef __AFXWIN_H__
	#error include 'stdafx.h' before including this file for PCH
#endif

#include "resource.h"       // main symbols

/////////////////////////////////////////////////////////////////////////////
// CTabSample1App:
// See tabSample1.cpp for the implementation of this class
//

class CTabSample1App : public CWinApp
{
public:
	CTabSample1App();

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CTabSample1App)
	public:
	virtual BOOL InitInstance();
	//}}AFX_VIRTUAL

// Implementation
	//{{AFX_MSG(CTabSample1App)
	afx_msg void OnAppAbout();
		// NOTE - the ClassWizard will add and remove member functions here.
		//    DO NOT EDIT what you see in these blocks of generated code !
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};


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

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

#endif // !defined(AFX_TABSAMPLE1_H__A74CBFBF_C1BB_4405_88E6_0A05A75EC0C5__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 zlib/libpng License


Written By
Product Manager PSI Logistics GmbH
Germany Germany
I started programming computers in 1979. After years of management and administration application programming, I started to work mainly in the telecommunication sector in 1986. While working at Cycos AG (formerly known as PP-COM GmbH) from 1992 to 1999 I was involved in the development of core and GUI components of their telematic server MRS for ISDN. After that I worked for a telecommunication company named Infitel International N.V. that produces software for open telecommunication services. After a long stop at Cycos AG, I worked for several other companies like Siemens Enterprise Communications, Axxom Software AG and PSI Logistics GmbH.

If you are curious about my other Computer related activities and previous projects, visit YeaSoft International

Comments and Discussions