Day10.cpp
上传用户:z_mail1980
上传日期:2007-06-01
资源大小:647k
文件大小:4k
源码类别:

SNMP编程

开发平台:

Visual C++

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