home *** CD-ROM | disk | FTP | other *** search
/ Total C++ 2 / TOTALCTWO.iso / borland / cmnctrl.pak / CTRLDEMO.CPP < prev    next >
C/C++ Source or Header  |  1997-05-06  |  2KB  |  70 lines

  1. // ctrldemo.cpp : Defines the class behaviors for the application.
  2. //
  3.  
  4. // This is a part of the Microsoft Foundation Classes C++ library.
  5. // Copyright (C) 1992-1995 Microsoft Corporation
  6. // All rights reserved.
  7. //
  8. // This source code is only intended as a supplement to the
  9. // Microsoft Foundation Classes Reference and related
  10. // electronic documentation provided with the library.
  11. // See these sources for detailed information regarding the
  12. // Microsoft Foundation Classes product.
  13.  
  14. #include "stdafx.h"
  15. #include "ctrldemo.h"
  16.  
  17. #include "propsht.h"
  18.  
  19. #ifdef _DEBUG
  20. #define new DEBUG_NEW
  21. #undef THIS_FILE
  22. static char THIS_FILE[] = __FILE__;
  23. #endif
  24.  
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CCtrldemoApp
  27.  
  28. BEGIN_MESSAGE_MAP(CCtrldemoApp, CWinApp)
  29.     //{{AFX_MSG_MAP(CCtrldemoApp)
  30.     //}}AFX_MSG_MAP
  31.     // Standard file based document commands
  32.     ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  33.     ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  34. END_MESSAGE_MAP()
  35.  
  36. /////////////////////////////////////////////////////////////////////////////
  37. // CCtrldemoApp construction
  38.  
  39. CCtrldemoApp::CCtrldemoApp()
  40. {
  41.     // TODO: add construction code here,
  42.     // Place all significant initialization in InitInstance
  43. }
  44.  
  45. /////////////////////////////////////////////////////////////////////////////
  46. // The one and only CCtrldemoApp object
  47.  
  48. CCtrldemoApp theApp;
  49.  
  50. /////////////////////////////////////////////////////////////////////////////
  51. // CCtrldemoApp initialization
  52.  
  53. BOOL CCtrldemoApp::InitInstance()
  54. {
  55. #ifdef _AFXDLL
  56.     Enable3dControls();            // Call this when using MFC in a shared DLL
  57. #else
  58.     Enable3dControlsStatic();    // Call this when linking to MFC statically
  59. #endif
  60.  
  61.     CAllControlsSheet    allcontrolssheet(_T("Common Controls Sample"));
  62.     m_pMainWnd = &allcontrolssheet;
  63.     allcontrolssheet.DoModal();
  64.     return FALSE;
  65. }
  66.  
  67. /////////////////////////////////////////////////////////////////////////////
  68. // CCtrldemoApp commands
  69.  
  70.