student.cpp
上传用户:hzzhuce
上传日期:2013-04-01
资源大小:1289k
文件大小:6k
源码类别:

SQL Server

开发平台:

Visual C++

  1. // student.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "student.h"
  5. #include "MainFrm.h"
  6. #include "studentSet.h"
  7. #include "studentDoc.h"
  8. #include "studentView.h"
  9. #include "odbcinst.h"
  10. #include "Splash.h"
  11. #ifdef _DEBUG
  12. #define new DEBUG_NEW
  13. #undef THIS_FILE
  14. static char THIS_FILE[] = __FILE__;
  15. #endif
  16. /////////////////////////////////////////////////////////////////////////////
  17. // CStudentApp
  18. BEGIN_MESSAGE_MAP(CStudentApp, CWinApp)
  19. //{{AFX_MSG_MAP(CStudentApp)
  20. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  21. // NOTE - the ClassWizard will add and remove mapping macros here.
  22. //    DO NOT EDIT what you see in these blocks of generated code!
  23. //}}AFX_MSG_MAP
  24. // Standard file based document commands
  25. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  26. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  27. // Standard print setup command
  28. ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
  29. END_MESSAGE_MAP()
  30. /////////////////////////////////////////////////////////////////////////////
  31. // CStudentApp construction
  32. CStudentApp::CStudentApp()
  33. {
  34. // TODO: add construction code here,
  35. // Place all significant initialization in InitInstance
  36. }
  37. /////////////////////////////////////////////////////////////////////////////
  38. // The one and only CStudentApp object
  39. CStudentApp theApp;
  40. /////////////////////////////////////////////////////////////////////////////
  41. // CStudentApp initialization
  42. BOOL CStudentApp::InitInstance()
  43. {
  44. // CG: The following block was added by the Splash Screen component. { CCommandLineInfo cmdInfo; ParseCommandLine(cmdInfo); CSplashWnd::EnableSplashScreen(cmdInfo.m_bShowSplash); }
  45. CDatabase m_DB;
  46.     CString sPath;
  47. GetModuleFileName(NULL,sPath.GetBufferSetLength(MAX_PATH+1),MAX_PATH);
  48. sPath.ReleaseBuffer();
  49. int nPos;
  50. nPos=sPath.ReverseFind ('\');
  51. sPath=sPath.Left (nPos);
  52. nPos=sPath.ReverseFind('\');
  53.     sPath=sPath.Left (nPos);
  54. CString lpszFile = sPath + "\score.mdb";
  55.    
  56.     char* szDesc;
  57. int mlen;
  58. szDesc=new char[256];
  59. sprintf(szDesc,"DSN=%s? DESCRIPTION=TOC support source? DBQ=%s? FIL=MicrosoftAccess? DEFAULTDIR=%s?? ","score",lpszFile,sPath);
  60. mlen = strlen(szDesc);
  61.     for (int i=0; i<mlen; i++)
  62. {
  63. if (szDesc[i] == '?')
  64.  szDesc[i] = '';
  65. }
  66. if (FALSE == SQLConfigDataSource(NULL,ODBC_ADD_DSN,"Microsoft Access Driver (*.mdb)",(LPCSTR)szDesc))
  67. AfxMessageBox("SQLConfigDataSource Failed");
  68.     try
  69. {
  70.      CString strConnect;
  71.  strConnect.Format("DSN=score;");
  72.  if(!m_DB.OpenEx(strConnect,CDatabase::useCursorLib))
  73.      {
  74.      AfxMessageBox("Unable to Connect to the Specified Data Source");
  75.      return FALSE ;
  76.      }
  77. }
  78. catch(CDBException *pE)
  79.     {
  80.         pE->ReportError();
  81.         pE->Delete();
  82.         return FALSE;
  83.     }
  84. AfxEnableControlContainer();
  85. // Standard initialization
  86. // If you are not using these features and wish to reduce the size
  87. //  of your final executable, you should remove from the following
  88. //  the specific initialization routines you do not need.
  89. #ifdef _AFXDLL
  90. Enable3dControls(); // Call this when using MFC in a shared DLL
  91. #else
  92. Enable3dControlsStatic(); // Call this when linking to MFC statically
  93. #endif
  94. // Change the registry key under which our settings are stored.
  95. // TODO: You should modify this string to be something appropriate
  96. // such as the name of your company or organization.
  97. SetRegistryKey(_T("Local AppWizard-Generated Applications"));
  98. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  99. // Register the application's document templates.  Document templates
  100. //  serve as the connection between documents, frame windows and views.
  101. CSingleDocTemplate* pDocTemplate;
  102. pDocTemplate = new CSingleDocTemplate(
  103. IDR_MAINFRAME,
  104. RUNTIME_CLASS(CStudentDoc),
  105. RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  106. RUNTIME_CLASS(CStudentView));
  107. AddDocTemplate(pDocTemplate);
  108. // Parse command line for standard shell commands, DDE, file open
  109. CCommandLineInfo cmdInfo;
  110. ParseCommandLine(cmdInfo);
  111. // Dispatch commands specified on the command line
  112. if (!ProcessShellCommand(cmdInfo))
  113. return FALSE;
  114. // The one and only window has been initialized, so show and update it.
  115. m_pMainWnd->ShowWindow(SW_SHOW);
  116. m_pMainWnd->UpdateWindow();
  117. return TRUE;
  118. }
  119. /////////////////////////////////////////////////////////////////////////////
  120. // CAboutDlg dialog used for App About
  121. class CAboutDlg : public CDialog
  122. {
  123. public:
  124. CAboutDlg();
  125. // Dialog Data
  126. //{{AFX_DATA(CAboutDlg)
  127. enum { IDD = IDD_ABOUTBOX };
  128. //}}AFX_DATA
  129. // ClassWizard generated virtual function overrides
  130. //{{AFX_VIRTUAL(CAboutDlg)
  131. protected:
  132. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  133. //}}AFX_VIRTUAL
  134. // Implementation
  135. protected:
  136. //{{AFX_MSG(CAboutDlg)
  137. // No message handlers
  138. //}}AFX_MSG
  139. DECLARE_MESSAGE_MAP()
  140. };
  141. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  142. {
  143. //{{AFX_DATA_INIT(CAboutDlg)
  144. //}}AFX_DATA_INIT
  145. }
  146. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  147. {
  148. CDialog::DoDataExchange(pDX);
  149. //{{AFX_DATA_MAP(CAboutDlg)
  150. //}}AFX_DATA_MAP
  151. }
  152. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  153. //{{AFX_MSG_MAP(CAboutDlg)
  154. // No message handlers
  155. //}}AFX_MSG_MAP
  156. END_MESSAGE_MAP()
  157. // App command to run the dialog
  158. void CStudentApp::OnAppAbout()
  159. {
  160. CAboutDlg aboutDlg;
  161. aboutDlg.DoModal();
  162. }
  163. /////////////////////////////////////////////////////////////////////////////
  164. // CStudentApp message handlers
  165. BOOL CStudentApp::PreTranslateMessage(MSG* pMsg)
  166. {
  167. // CG: The following lines were added by the Splash Screen component. if (CSplashWnd::PreTranslateAppMessage(pMsg)) return TRUE; return CWinApp::PreTranslateMessage(pMsg);
  168. }
  169. //DEL BOOL CStudentApp::InitInstance(int nCmdShow)
  170. //DEL {
  171. //DEL 
  172. //DEL }
  173. //DEL int CStudentApp::Run()
  174. //DEL {
  175. //DEL 
  176. //DEL }