home *** CD-ROM | disk | FTP | other *** search
- // CmnCtrl1.cpp : Defines the class behaviors for the application.
- //
- // This is a part of the Microsoft Foundation Classes C++ library.
- // Copyright (C) 1992-1998 Microsoft Corporation
- // All rights reserved.
- //
- // This source code is only intended as a supplement to the
- // Microsoft Foundation Classes Reference and related
- // electronic documentation provided with the library.
- // See these sources for detailed information regarding the
- // Microsoft Foundation Classes product.
- #include "stdafx.h"
- #include "CmnCtrl1.h"
- #include "propsht.h"
-
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
- // CCmnCtrl1App
-
- BEGIN_MESSAGE_MAP(CCmnCtrl1App, CWinApp)
- //{{AFX_MSG_MAP(CCmnCtrl1App)
- //}}AFX_MSG
- ON_COMMAND(ID_HELP, CWinApp::OnHelp)
- END_MESSAGE_MAP()
-
- /////////////////////////////////////////////////////////////////////////////
- // CCmnCtrl1App construction
-
- CCmnCtrl1App::CCmnCtrl1App()
- {
- }
-
- /////////////////////////////////////////////////////////////////////////////
- // The one and only CCmnCtrl1App object
-
- CCmnCtrl1App theApp;
-
- /////////////////////////////////////////////////////////////////////////////
- // CCmnCtrl1App initialization
-
- BOOL CCmnCtrl1App::InitInstance()
- {
- AfxEnableControlContainer();
-
- // Standard initialization
-
- CAllControlsSheet allcontrolssheet(_T("Common Controls Sample"));
- m_pMainWnd = &allcontrolssheet;
- allcontrolssheet.DoModal();
- return FALSE;
- }
-