ENROLL.CPP
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:4k
源码类别:

Windows编程

开发平台:

Visual C++

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