C/C++
cprog116.asc
Associated article: C Programming
Tags: C/C++
Published source code accompanying Al Stevens column in which he builds a Property Page Dialog-based application for Windows 95. Also see CPROG116.ZIP
_C Programming Column_
by Al Stevens
Listing One
CSheet::CSheet() : CPropertySheet("Test Property Sheets", 0, 0)
{
}
Listing Two
class CSheet;
class CPropSheetApp : public CWinApp
{
CSheet* pCSheet;
public:
CPropSheetApp();
};
Listing Three
BOOL CPropSheetApp::InitInstance()
{
Enable3dControlsStatic();
m_pCSheet = new CSheet;
m_...


