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

  1. // DaoEnrol.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 "DaoEnrol.h"
  15.  
  16. #include "MainFrm.h"
  17. #include "sectset.h"
  18. #include "coursese.h"
  19. #include "denrldoc.h"
  20. #include "sectform.h"
  21.  
  22. #ifdef _DEBUG
  23. #define new DEBUG_NEW
  24. #undef THIS_FILE
  25. static char THIS_FILE[] = __FILE__;
  26. #endif
  27.  
  28. /////////////////////////////////////////////////////////////////////////////
  29. // CDaoEnrolApp
  30.  
  31. BEGIN_MESSAGE_MAP(CDaoEnrolApp, CWinApp)
  32.     //{{AFX_MSG_MAP(CDaoEnrolApp)
  33.     ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  34.         // NOTE - the ClassWizard will add and remove mapping macros here.
  35.         //    DO NOT EDIT what you see in these blocks of generated code!
  36.     //}}AFX_MSG_MAP
  37.     // Standard print setup command
  38.     ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
  39. END_MESSAGE_MAP()
  40.  
  41. /////////////////////////////////////////////////////////////////////////////
  42. // CDaoEnrolApp construction
  43.  
  44. CDaoEnrolApp::CDaoEnrolApp()
  45. {
  46.     // TODO: add construction code here,
  47.     // Place all significant initialization in InitInstance
  48. }
  49.  
  50. /////////////////////////////////////////////////////////////////////////////
  51. // The one and only CDaoEnrolApp object
  52.  
  53. CDaoEnrolApp theApp;
  54.  
  55. /////////////////////////////////////////////////////////////////////////////
  56. // CDaoEnrolApp initialization
  57.  
  58. BOOL CDaoEnrolApp::InitInstance()
  59. {
  60.     // Standard initialization
  61.     // If you are not using these features and wish to reduce the size
  62.     //  of your final executable, you should remove from the following
  63.     //  the specific initialization routines you do not need.
  64.  
  65. #ifdef _AFXDLL
  66.     Enable3dControls();         // Call this when using MFC in a shared DLL
  67. #else
  68.     Enable3dControlsStatic();   // Call this when linking to MFC statically
  69. #endif
  70.  
  71.     LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  72.  
  73.     // Register the application's document templates.  Document templates
  74.     //  serve as the connection between documents, frame windows and views.
  75.  
  76.     CSingleDocTemplate* pDocTemplate;
  77.     pDocTemplate = new CSingleDocTemplate(
  78.         IDR_MAINFRAME,
  79.         RUNTIME_CLASS(CDaoEnrolDoc),
  80.         RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  81.         RUNTIME_CLASS(CSectionForm));
  82.     AddDocTemplate(pDocTemplate);
  83.  
  84.     // Parse command line for standard shell commands, DDE, file open
  85.     CCommandLineInfo cmdInfo;
  86.     ParseCommandLine(cmdInfo);
  87.  
  88.     // Dispatch commands specified on the command line
  89.     if (!ProcessShellCommand(cmdInfo))
  90.         return FALSE;
  91.  
  92.     return TRUE;
  93. }
  94.  
  95. /////////////////////////////////////////////////////////////////////////////
  96. // CAboutDlg dialog used for App About
  97.  
  98. class CAboutDlg : public CDialog
  99. {
  100. public:
  101.     CAboutDlg();
  102.  
  103. // Dialog Data
  104.     //{{AFX_DATA(CAboutDlg)
  105.     enum { IDD = IDD_ABOUTBOX };
  106.     //}}AFX_DATA
  107.  
  108.     // ClassWizard generated virtual function overrides
  109.     //{{AFX_VIRTUAL(CAboutDlg)
  110.     protected:
  111.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  112.     //}}AFX_VIRTUAL
  113.  
  114. // Implementation
  115. protected:
  116.     //{{AFX_MSG(CAboutDlg)
  117.         // No message handlers
  118.     //}}AFX_MSG
  119.     DECLARE_MESSAGE_MAP()
  120. };
  121.  
  122. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  123. {
  124.     //{{AFX_DATA_INIT(CAboutDlg)
  125.     //}}AFX_DATA_INIT
  126. }
  127.  
  128. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  129. {
  130.     CDialog::DoDataExchange(pDX);
  131.     //{{AFX_DATA_MAP(CAboutDlg)
  132.     //}}AFX_DATA_MAP
  133. }
  134.  
  135. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  136.     //{{AFX_MSG_MAP(CAboutDlg)
  137.         // No message handlers
  138.     //}}AFX_MSG_MAP
  139. END_MESSAGE_MAP()
  140.  
  141. // App command to run the dialog
  142. void CDaoEnrolApp::OnAppAbout()
  143. {
  144.     CAboutDlg aboutDlg;
  145.     aboutDlg.DoModal();
  146. }
  147.  
  148. /////////////////////////////////////////////////////////////////////////////
  149. // CDaoEnrolApp commands
  150.