PasRTDat.cpp
上传用户:shtiemo
上传日期:2017-12-29
资源大小:163k
文件大小:4k
开发平台:

Visual C++

  1. // PasRTDat.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "PasRTDat.h"
  5. #include "MainFrm.h"
  6. #include "ChildFrm.h"
  7. #include "PasRTDatDoc.h"
  8. #include "PasRTDatView.h"
  9. #include "RTDatOpr.h"
  10. #ifdef _DEBUG
  11. #define new DEBUG_NEW
  12. #undef THIS_FILE
  13. static char THIS_FILE[] = __FILE__;
  14. #endif
  15. /////////////////////////////////////////////////////////////////////////////
  16. // CPasRTDatApp
  17. BEGIN_MESSAGE_MAP(CPasRTDatApp, CWinApp)
  18. //{{AFX_MSG_MAP(CPasRTDatApp)
  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. // CPasRTDatApp construction
  31. CPasRTDatApp::CPasRTDatApp()
  32. {
  33. // TODO: add construction code here,
  34. // Place all significant initialization in InitInstance
  35. }
  36. /////////////////////////////////////////////////////////////////////////////
  37. // The one and only CPasRTDatApp object
  38. CPasRTDatApp theApp;
  39. /////////////////////////////////////////////////////////////////////////////
  40. // CPasRTDatApp initialization
  41. BOOL CPasRTDatApp::InitInstance()
  42. {
  43. // Standard initialization
  44. // If you are not using these features and wish to reduce the size
  45. //  of your final executable, you should remove from the following
  46. //  the specific initialization routines you do not need.
  47. #ifdef _AFXDLL
  48. Enable3dControls(); // Call this when using MFC in a shared DLL
  49. #else
  50. Enable3dControlsStatic(); // Call this when linking to MFC statically
  51. #endif
  52. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  53. // Register the application's document templates.  Document templates
  54. //  serve as the connection between documents, frame windows and views.
  55. CMultiDocTemplate* pDocTemplate;
  56. pDocTemplate = new CMultiDocTemplate(
  57. IDR_PASRTDTYPE,
  58. RUNTIME_CLASS(CPasRTDatDoc),
  59. RUNTIME_CLASS(CChildFrame), // custom MDI child frame
  60. RUNTIME_CLASS(CPasRTDatView));
  61. AddDocTemplate(pDocTemplate);
  62. // create main MDI Frame window
  63. CMainFrame* pMainFrame = new CMainFrame;
  64. if (!pMainFrame->LoadFrame(IDR_MAINFRAME))
  65. return FALSE;
  66. m_pMainWnd = pMainFrame;
  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 main window has been initialized, so show and update it.
  74. pMainFrame->ShowWindow(m_nCmdShow);
  75. pMainFrame->UpdateWindow();
  76. if (!ModuleRegist())
  77. AfxMessageBox("软总线注册失败!");
  78. else
  79. {
  80. if (!ReadMeaCoefInfo())
  81. AfxMessageBox("读数据库失败!");
  82. if (!ReadRTUYCYXInfo())
  83. AfxMessageBox("读数据库失败!");
  84. }
  85. return TRUE;
  86. }
  87. /////////////////////////////////////////////////////////////////////////////
  88. // CAboutDlg dialog used for App About
  89. class CAboutDlg : public CDialog
  90. {
  91. public:
  92. CAboutDlg();
  93. // Dialog Data
  94. //{{AFX_DATA(CAboutDlg)
  95. enum { IDD = IDD_ABOUTBOX };
  96. //}}AFX_DATA
  97. // ClassWizard generated virtual function overrides
  98. //{{AFX_VIRTUAL(CAboutDlg)
  99. protected:
  100. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  101. //}}AFX_VIRTUAL
  102. // Implementation
  103. protected:
  104. //{{AFX_MSG(CAboutDlg)
  105. //}}AFX_MSG
  106. DECLARE_MESSAGE_MAP()
  107. };
  108. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  109. {
  110. //{{AFX_DATA_INIT(CAboutDlg)
  111. //}}AFX_DATA_INIT
  112. }
  113. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  114. {
  115. CDialog::DoDataExchange(pDX);
  116. //{{AFX_DATA_MAP(CAboutDlg)
  117. //}}AFX_DATA_MAP
  118. }
  119. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  120. //{{AFX_MSG_MAP(CAboutDlg)
  121. //}}AFX_MSG_MAP
  122. END_MESSAGE_MAP()
  123. // App command to run the dialog
  124. void CPasRTDatApp::OnAppAbout()
  125. {
  126. CAboutDlg aboutDlg;
  127. aboutDlg.DoModal();
  128. }
  129. /////////////////////////////////////////////////////////////////////////////
  130. // CPasRTDatApp commands
  131. int CPasRTDatApp::ExitInstance() 
  132. {
  133. // TODO: Add your specialized code here and/or call the base class
  134. FreeRTUYXYCInfo();
  135. FreeFileYXYCInfo();
  136. FreeMeaCoefInfo();
  137. ModuleUnRegist();
  138. return CWinApp::ExitInstance();
  139. }