school.cpp
上传用户:rs600066
上传日期:2017-10-16
资源大小:4788k
文件大小:4k
源码类别:

数据库系统

开发平台:

Visual C++

  1. // school.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "school.h"
  5. #include "MainFrm.h"
  6. #include "schoolDoc.h"
  7. #include "schoolView.h"
  8. #include "LoginDlg.h"
  9. #include ".skinsSkinPlusPlus.h"
  10. #ifdef _DEBUG
  11. #define new DEBUG_NEW
  12. #undef THIS_FILE
  13. static char THIS_FILE[] = __FILE__;
  14. #endif
  15. /////////////////////////////////////////////////////////////////////////////
  16. // CSchoolApp
  17. BEGIN_MESSAGE_MAP(CSchoolApp, CWinApp)
  18. //{{AFX_MSG_MAP(CSchoolApp)
  19. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  20. // NOTE - the ClassWizard will add and remove mapping macros here.
  21. //    DO NOT EDIT what you see in these blocks of generated code!
  22. //}}AFX_MSG_MAP
  23. // Standard file based document commands
  24. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  25. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  26. // Standard print setup command
  27. ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
  28. END_MESSAGE_MAP()
  29. /////////////////////////////////////////////////////////////////////////////
  30. // CSchoolApp construction
  31. CSchoolApp::CSchoolApp()
  32. {
  33. // TODO: add construction code here,
  34. m_bIsAdmin = FALSE;
  35. }
  36. /////////////////////////////////////////////////////////////////////////////
  37. // The one and only CSchoolApp object
  38. CSchoolApp theApp;
  39. /////////////////////////////////////////////////////////////////////////////
  40. // CSchoolApp initialization
  41. BOOL CSchoolApp::InitInstance()
  42. {
  43. AfxEnableControlContainer();
  44. // Standard initialization
  45. // If you are not using these features and wish to reduce the size
  46. //  of your final executable, you should remove from the following
  47. //  the specific initialization routines you do not need.
  48. SQLConfigDataSource(NULL,ODBC_ADD_DSN,
  49. "Microsoft Access Driver (*.mdb)",
  50. "DSN=school"
  51. "Description=Hotel"
  52.         "FileType=Access"
  53.         "DBQ=.\school.mdb"
  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. // Change the registry key under which our settings are stored.
  61. // TODO: You should modify this string to be something appropriate
  62. // such as the name of your company or organization.
  63. SetRegistryKey(_T("Local AppWizard-Generated Applications"));
  64. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  65. InitializeSkin(_T("XPCorona.ssk"));
  66. // Register the application's document templates.  Document templates
  67. //  serve as the connection between documents, frame windows and views.
  68. CLoginDlg loginDlg;
  69. if(loginDlg.DoModal()!=IDOK)
  70. return FALSE;
  71. CSingleDocTemplate* pDocTemplate;
  72. pDocTemplate = new CSingleDocTemplate(
  73. IDR_MAINFRAME,
  74. RUNTIME_CLASS(CSchoolDoc),
  75. RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  76. RUNTIME_CLASS(CSchoolView));
  77. AddDocTemplate(pDocTemplate);
  78. // Parse command line for standard shell commands, DDE, file open
  79. CCommandLineInfo cmdInfo;
  80. ParseCommandLine(cmdInfo);
  81. // Dispatch commands specified on the command line
  82. if (!ProcessShellCommand(cmdInfo))
  83. return FALSE;
  84. // The one and only window has been initialized, so show and update it.
  85. m_pMainWnd->ShowWindow(SW_SHOWMAXIMIZED);
  86. m_pMainWnd->UpdateWindow();
  87. m_pMainWnd->SetWindowText("学生信息管理系统");
  88. return TRUE;
  89. }
  90. /////////////////////////////////////////////////////////////////////////////
  91. // CAboutDlg dialog used for App About
  92. class CAboutDlg : public CDialog
  93. {
  94. public:
  95. CAboutDlg();
  96. // Dialog Data
  97. //{{AFX_DATA(CAboutDlg)
  98. enum { IDD = IDD_ABOUTBOX };
  99. //}}AFX_DATA
  100. // ClassWizard generated virtual function overrides
  101. //{{AFX_VIRTUAL(CAboutDlg)
  102. protected:
  103. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  104. //}}AFX_VIRTUAL
  105. // Implementation
  106. protected:
  107. //{{AFX_MSG(CAboutDlg)
  108. // No message handlers
  109. //}}AFX_MSG
  110. DECLARE_MESSAGE_MAP()
  111. };
  112. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  113. {
  114. //{{AFX_DATA_INIT(CAboutDlg)
  115. //}}AFX_DATA_INIT
  116. }
  117. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  118. {
  119. CDialog::DoDataExchange(pDX);
  120. //{{AFX_DATA_MAP(CAboutDlg)
  121. //}}AFX_DATA_MAP
  122. }
  123. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  124. //{{AFX_MSG_MAP(CAboutDlg)
  125. // No message handlers
  126. //}}AFX_MSG_MAP
  127. END_MESSAGE_MAP()
  128. // App command to run the dialog
  129. void CSchoolApp::OnAppAbout()
  130. {
  131. CAboutDlg aboutDlg;
  132. aboutDlg.DoModal();
  133. }
  134. /////////////////////////////////////////////////////////////////////////////
  135. // CSchoolApp message handlers