Equipment.cpp
上传用户:latoyin
上传日期:2017-10-19
资源大小:2882k
文件大小:3k
源码类别:

数据库系统

开发平台:

Visual C++

  1. // Equipment.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "Equipment.h"
  5. #include "EquipmentDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CEquipmentApp
  13. BEGIN_MESSAGE_MAP(CEquipmentApp, CWinApp)
  14. //{{AFX_MSG_MAP(CEquipmentApp)
  15. // NOTE - the ClassWizard will add and remove mapping macros here.
  16. //    DO NOT EDIT what you see in these blocks of generated code!
  17. //}}AFX_MSG
  18. ON_COMMAND(ID_HELP, CWinApp::OnHelp)
  19. END_MESSAGE_MAP()
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CEquipmentApp construction
  22. CEquipmentApp::CEquipmentApp()
  23. {
  24. // TODO: add construction code here,
  25. // Place all significant initialization in InitInstance
  26. }
  27. /////////////////////////////////////////////////////////////////////////////
  28. // The one and only CEquipmentApp object
  29. CEquipmentApp theApp;
  30. // conn;
  31. /////////////////////////////////////////////////////////////////////////////
  32. // CEquipmentApp initialization
  33. BOOL CEquipmentApp::InitInstance()
  34. {
  35. AfxEnableControlContainer();
  36. ::CoInitialize(NULL);
  37. AfxOleInit();
  38. datamanage = new CDataManage();
  39. datamanage->ConnectDatabase("Provider=SQLOLEDB.1;Persist Security Info=False;User ID=sa;Initial Catalog=EquipmentManage;Data Source=.");
  40. #ifdef _AFXDLL
  41. Enable3dControls(); // Call this when using MFC in a shared DLL
  42. #else
  43. Enable3dControlsStatic(); // Call this when linking to MFC statically
  44. #endif
  45. //LoadIcon(IDI_TOOLBAR10);
  46. CEquipmentDlg dlg;
  47. m_pMainWnd = &dlg;
  48. int nResponse = dlg.DoModal();
  49. if (nResponse == IDOK)
  50. {
  51. // TODO: Place code here to handle when the dialog is
  52. //  dismissed with OK
  53. }
  54. else if (nResponse == IDCANCEL)
  55. {
  56. // TODO: Place code here to handle when the dialog is
  57. //  dismissed with Cancel
  58. }
  59. // datamanage->~CDataManage();
  60. // delete datamanage;
  61. // Since the dialog has been closed, return FALSE so that we exit the
  62. //  application, rather than start the application's message pump.
  63. return FALSE;
  64. }
  65. CTime CEquipmentApp::StrToTime(CString str)
  66. {
  67. int year,month,day,pos1,pos2;
  68. CString s_year,s_month,s_day;
  69. pos1 =str.Find("-",0);
  70. pos2 = str.Find("-",pos1+1);
  71. year = atoi(str.Left(4));//读取年
  72. month = atoi(str.Mid(pos1+1,2));//读取月
  73. day = atoi(str.Mid(pos2+1));//读取日
  74. return CTime(year,month,day,0,0,0);
  75. }
  76. int CEquipmentApp::ExitInstance() 
  77. {
  78. return CWinApp::ExitInstance();
  79. }