DlgChaoShiBase.cpp
上传用户:jzscgs158
上传日期:2022-05-25
资源大小:8709k
文件大小:3k
源码类别:

百货/超市行业

开发平台:

Visual C++

  1. // DlgChaoShiBase.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "NCShop.h"
  5. #include "DlgChaoShiBase.h"
  6. #include "ADOConn.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CDlgChaoShiBase dialog
  14. CDlgChaoShiBase::CDlgChaoShiBase(CWnd* pParent /*=NULL*/)
  15. : CDialog(CDlgChaoShiBase::IDD, pParent)
  16. {
  17. //{{AFX_DATA_INIT(CDlgChaoShiBase)
  18. m_str1 = _T("");
  19. m_str2 = _T("");
  20. m_str3 = _T("");
  21. m_str4 = _T("");
  22. m_int = -1;
  23. //}}AFX_DATA_INIT
  24. }
  25. void CDlgChaoShiBase::DoDataExchange(CDataExchange* pDX)
  26. {
  27. CDialog::DoDataExchange(pDX);
  28. //{{AFX_DATA_MAP(CDlgChaoShiBase)
  29. DDX_Control(pDX, IDCANCEL, m_Btn2);
  30. DDX_Control(pDX, IDOK, m_Btn1);
  31. DDX_Text(pDX, IDC_EDIT1, m_str1);
  32. DDV_MaxChars(pDX, m_str1, 50);
  33. DDX_Text(pDX, IDC_EDIT2, m_str2);
  34. DDV_MaxChars(pDX, m_str2, 20);
  35. DDX_Text(pDX, IDC_EDIT3, m_str3);
  36. DDV_MaxChars(pDX, m_str3, 255);
  37. DDX_Text(pDX, IDC_EDIT4, m_str4);
  38. DDV_MaxChars(pDX, m_str4, 255);
  39. DDX_CBIndex(pDX, IDC_COMBO1, m_int);
  40. //}}AFX_DATA_MAP
  41. }
  42. BEGIN_MESSAGE_MAP(CDlgChaoShiBase, CDialog)
  43. //{{AFX_MSG_MAP(CDlgChaoShiBase)
  44. //}}AFX_MSG_MAP
  45. END_MESSAGE_MAP()
  46. /////////////////////////////////////////////////////////////////////////////
  47. // CDlgChaoShiBase message handlers
  48. BOOL CDlgChaoShiBase::OnInitDialog() 
  49. {
  50. CDialog::OnInitDialog();
  51. // TODO: Add extra initialization here
  52. CADOConn adoMain;
  53. CString strSql;
  54. GetDlgItem(IDC_STATIC1)->SetFont(&ftHeader,TRUE);
  55. m_Btn1.SetXIcon(IDI_ICONBUTTON);
  56. m_Btn2.SetXIcon(IDI_ICONBUTTON);
  57. strSql="select * from 超市基本信息表";
  58. adoMain.Open(strSql);
  59. if(!adoMain.adoEOF())
  60. {
  61. if(adoMain.MoveFirst())
  62. {
  63. m_str1=adoMain.GetValueString(1,1);
  64. m_str2=adoMain.GetValueString(3,1);
  65. m_str3=adoMain.GetValueString(4,1);
  66. m_str4=adoMain.GetValueString(5,1);
  67. m_int=adoMain.GetValueInt(2);
  68. UpdateData(FALSE);
  69. }
  70. }
  71. adoMain.ExitConnect();
  72. return TRUE;  // return TRUE unless you set the focus to a control
  73.               // EXCEPTION: OCX Property Pages should return FALSE
  74. }
  75. void CDlgChaoShiBase::OnOK() 
  76. {
  77. // TODO: Add extra validation here
  78. CADOConn adoMain;
  79. CString strSql;
  80. CString str;
  81. UpdateData(TRUE);
  82. if(m_str1=="") 
  83. {
  84. MessageBox("超市名字不能为空!","提示",MB_OK|MB_ICONWARNING);
  85. GetDlgItem(IDC_EDIT1)->SetFocus();
  86. return;
  87. }
  88. str.Format("%d",m_int);
  89. strSql="update 超市基本信息表 set 名称='";
  90. strSql=strSql+m_str1+"',性质=";
  91. strSql=strSql+str+",联系方式='";
  92. strSql=strSql+m_str2+"',地址='";
  93. strSql=strSql+m_str3+"',备注='";
  94. strSql=strSql+m_str4+"' where 编号=1";
  95. adoMain.ExecuteSQL(strSql);
  96. adoMain.ExitConnect();
  97. CDialog::OnOK();
  98. }