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

Windows编程

开发平台:

Visual C++

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