home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / database / dynabind / enroll.cpp < prev    next >
C/C++ Source or Header  |  1998-03-26  |  4KB  |  141 lines

  1. // enroll.cpp : Defines the class behaviors for the application.
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. #include "stdafx.h"
  14. #include "enroll.h"
  15.  
  16. #include "mainfrm.h"
  17. #include "sectset.h"
  18. #include "coursset.h"
  19. #include "enroldoc.h"
  20. #include "sectform.h"
  21.  
  22. #ifdef _DEBUG
  23. #undef THIS_FILE
  24. static char BASED_CODE THIS_FILE[] = __FILE__;
  25. #endif
  26.  
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CEnrollApp
  29.  
  30. BEGIN_MESSAGE_MAP(CEnrollApp, CWinApp)
  31.     //{{AFX_MSG_MAP(CEnrollApp)
  32.     ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  33.         // NOTE - the ClassWizard will add and remove mapping macros here.
  34.         //    DO NOT EDIT what you see in these blocks of generated code!
  35.     //}}AFX_MSG_MAP
  36.     // Standard print setup command
  37.     ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
  38. END_MESSAGE_MAP()
  39.  
  40. /////////////////////////////////////////////////////////////////////////////
  41. // CEnrollApp construction
  42.  
  43. CEnrollApp::CEnrollApp()
  44. {
  45.     // TODO: add construction code here,
  46.     // Place all significant initialization in InitInstance
  47. }
  48.  
  49. /////////////////////////////////////////////////////////////////////////////
  50. // The one and only CEnrollApp object
  51.  
  52. CEnrollApp NEAR theApp;
  53.  
  54. /////////////////////////////////////////////////////////////////////////////
  55. // CEnrollApp initialization
  56.  
  57. BOOL CEnrollApp::InitInstance()
  58. {
  59.     // Standard initialization
  60.     // If you are not using these features and wish to reduce the size
  61.     //  of your final executable, you should remove from the following
  62.     //  the specific initialization routines you do not need.
  63.  
  64.     Enable3dControls();    // Use 3d controls in dialogs
  65.     LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  66.  
  67.     // Register the application's document templates.  Document templates
  68.     //  serve as the connection between documents, frame windows and views.
  69.  
  70.     CSingleDocTemplate* pDocTemplate;
  71.     pDocTemplate = new CSingleDocTemplate(
  72.         IDR_MAINFRAME,
  73.         RUNTIME_CLASS(CEnrollDoc),
  74.         RUNTIME_CLASS(CMainFrame),     // main SDI frame window
  75.         RUNTIME_CLASS(CSectionForm));
  76.     AddDocTemplate(pDocTemplate);
  77.  
  78.  
  79.     // create a new (empty) document
  80.     OnFileNew();
  81.  
  82.     if (m_lpCmdLine[0] != '\0')
  83.     {
  84.         // TODO: add command line processing here
  85.     }
  86.  
  87.  
  88.     return TRUE;
  89. }
  90.  
  91. /////////////////////////////////////////////////////////////////////////////
  92. // CAboutDlg dialog used for App About
  93.  
  94. class CAboutDlg : public CDialog
  95. {
  96. public:
  97.     CAboutDlg();
  98.  
  99. // Dialog Data
  100.     //{{AFX_DATA(CAboutDlg)
  101.     enum { IDD = IDD_ABOUTBOX };
  102.     //}}AFX_DATA
  103.  
  104. // Implementation
  105. protected:
  106.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  107.     //{{AFX_MSG(CAboutDlg)
  108.         // No message handlers
  109.     //}}AFX_MSG
  110.     DECLARE_MESSAGE_MAP()
  111. };
  112.  
  113. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  114. {
  115.     //{{AFX_DATA_INIT(CAboutDlg)
  116.     //}}AFX_DATA_INIT
  117. }
  118.  
  119. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  120. {
  121.     CDialog::DoDataExchange(pDX);
  122.     //{{AFX_DATA_MAP(CAboutDlg)
  123.     //}}AFX_DATA_MAP
  124. }
  125.  
  126. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  127.     //{{AFX_MSG_MAP(CAboutDlg)
  128.         // No message handlers
  129.     //}}AFX_MSG_MAP
  130. END_MESSAGE_MAP()
  131.  
  132. // App command to run the dialog
  133. void CEnrollApp::OnAppAbout()
  134. {
  135.     CAboutDlg aboutDlg;
  136.     aboutDlg.DoModal();
  137. }
  138.  
  139. /////////////////////////////////////////////////////////////////////////////
  140. // CEnrollApp commands
  141.