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

百货/超市行业

开发平台:

Visual C++

  1. // DlgYongHuGuanLi.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "ncshop.h"
  5. #include "DlgYongHuGuanLi.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. // CDlgYongHuGuanLi dialog
  14. CDlgYongHuGuanLi::CDlgYongHuGuanLi(CWnd* pParent /*=NULL*/)
  15. : CDialog(CDlgYongHuGuanLi::IDD, pParent)
  16. {
  17. //{{AFX_DATA_INIT(CDlgYongHuGuanLi)
  18. m_str1 = _T("");
  19. m_str2 = _T("");
  20. m_str3 = _T("");
  21. m_str4 = _T("");
  22. m_str5 = _T("");
  23. m_str6 = _T("");
  24. m_intSelect = 0;
  25. //}}AFX_DATA_INIT
  26. }
  27. void CDlgYongHuGuanLi::DoDataExchange(CDataExchange* pDX)
  28. {
  29. CDialog::DoDataExchange(pDX);
  30. //{{AFX_DATA_MAP(CDlgYongHuGuanLi)
  31. DDX_Control(pDX, IDMODIFY, m_Btn3);
  32. DDX_Control(pDX, IDDEL3, m_Btn2);
  33. DDX_Control(pDX, IDADD3, m_Btn1);
  34. DDX_Control(pDX, IDC_LIST1, m_listMain);
  35. DDX_Text(pDX, IDC_EDIT1, m_str1);
  36. DDX_Text(pDX, IDC_EDIT2, m_str2);
  37. DDX_Text(pDX, IDC_EDIT3, m_str3);
  38. DDX_Text(pDX, IDC_EDIT4, m_str4);
  39. DDX_Text(pDX, IDC_EDIT5, m_str5);
  40. DDX_Text(pDX, IDC_EDIT7, m_str6);
  41. DDX_CBIndex(pDX, IDC_COMBO2, m_intSelect);
  42. //}}AFX_DATA_MAP
  43. }
  44. BEGIN_MESSAGE_MAP(CDlgYongHuGuanLi, CDialog)
  45. //{{AFX_MSG_MAP(CDlgYongHuGuanLi)
  46. ON_BN_CLICKED(IDADD3, OnAdd3)
  47. ON_BN_CLICKED(IDMODIFY, OnModify)
  48. ON_BN_CLICKED(IDDEL3, OnDel3)
  49. ON_NOTIFY(NM_CLICK, IDC_LIST1, OnClickList1)
  50. //}}AFX_MSG_MAP
  51. END_MESSAGE_MAP()
  52. /////////////////////////////////////////////////////////////////////////////
  53. // CDlgYongHuGuanLi message handlers
  54. BOOL CDlgYongHuGuanLi::OnInitDialog() 
  55. {
  56. CDialog::OnInitDialog();
  57. // TODO: Add extra initialization here
  58. m_Btn1.SetXIcon(IDI_ICONBUTTON);
  59. m_Btn2.SetXIcon(IDI_ICONBUTTON);
  60. m_Btn3.SetXIcon(IDI_ICONBUTTON);
  61. GetDlgItem(IDC_STATIC1)->SetFont(&ftHeader,TRUE);
  62. CString strSql;
  63. CADOConn adoMain;
  64. strSql="select * from 管理员基本信息表";
  65. adoMain.Open(strSql);
  66. adoMain.InitList(&m_listMain,7);
  67. adoMain.FillList(&m_listMain,7);
  68. adoMain.ExitConnect();
  69. return TRUE;  // return TRUE unless you set the focus to a control
  70.               // EXCEPTION: OCX Property Pages should return FALSE
  71. }
  72. void CDlgYongHuGuanLi::OnAdd3() 
  73. {
  74. // TODO: Add your control notification handler code here
  75. CADOConn adoMain;
  76. CString strSql;
  77. int i=0;
  78. UpdateData(TRUE);
  79. strSql="insert into 管理员基本信息表(编号) values('')";
  80. adoMain.ExecuteSQL(strSql);
  81. strSql="select * from 管理员基本信息表";
  82. adoMain.Open(strSql);
  83. adoMain.FillList(&m_listMain,7);
  84. m_listMain.SetItemState(0,  LVIS_SELECTED,  LVIS_SELECTED);
  85. m_str1="";
  86. m_str2="";
  87. m_str3="";
  88. m_str4="";
  89. m_str5="";
  90. m_str6="";
  91. m_intSelect=0;
  92. UpdateData(FALSE);
  93. adoMain.ExitConnect();
  94. }
  95. void CDlgYongHuGuanLi::OnModify() 
  96. {
  97. // TODO: Add your control notification handler code here
  98. CADOConn adoMain;
  99. CString strSql,str;
  100. POSITION pos;
  101. int i;
  102. pos=m_listMain.GetFirstSelectedItemPosition();
  103. i=m_listMain.GetNextSelectedItem(pos);
  104. if (i>=0)
  105. {
  106. str=m_listMain.GetItemText(i,0);
  107. }
  108. UpdateData(TRUE);
  109. strSql="update 管理员基本信息表 set 编号='";
  110. strSql=strSql+m_str1+"',姓名='";
  111. strSql=strSql+m_str2+"',权限=";
  112. str.Format("%d",m_intSelect);
  113. strSql=strSql+str+",身份证号='";
  114. strSql=strSql+m_str3+"',密码='";
  115. strSql=strSql+m_str4+"',联系方式='";
  116. strSql=strSql+m_str5+"',地址='";
  117. strSql=strSql+m_str6+"'";
  118. str=m_listMain.GetItemText(i,0);
  119. strSql=strSql+" where 编号='"+str+"'";
  120. adoMain.ExecuteSQL(strSql);
  121. strSql="select * from 管理员基本信息表";
  122. adoMain.Open(strSql);
  123. adoMain.FillList(&m_listMain,7);
  124. while(m_listMain.GetItemText(i,1)!=m_str1&&i<m_listMain.GetItemCount())
  125. {
  126. i++;
  127. }
  128. if(m_listMain.GetItemCount()>0)
  129. m_listMain.SetItemState(i,  LVIS_SELECTED,  LVIS_SELECTED);
  130. adoMain.ExitConnect();
  131. }
  132. void CDlgYongHuGuanLi::OnDel3() 
  133. {
  134. // TODO: Add your control notification handler code here
  135. CADOConn adoMain;
  136. CString strSql;
  137. POSITION pos;
  138. int i;
  139. UINT j=0;
  140. pos=m_listMain.GetFirstSelectedItemPosition();
  141. i=m_listMain.GetNextSelectedItem(pos);
  142. if (i>=0)
  143. {
  144. if(MessageBox("确信删除这些信息吗?","提示",MB_YESNO|MB_ICONQUESTION)==IDNO) return;
  145. while(j<m_listMain.GetSelectedCount()&&i<m_listMain.GetItemCount())
  146. {
  147. if(m_listMain.GetItemState(i,LVIS_SELECTED)==LVIS_SELECTED)
  148. {
  149. strSql="delete * from 管理员基本信息表 where 编号='"+m_listMain.GetItemText(i,0)+"'";
  150. adoMain.ExecuteSQL(strSql);
  151. j=j+1;
  152. }
  153. i=i+1;
  154. }
  155. }
  156. strSql="select * from 管理员基本信息表";
  157. adoMain.Open(strSql);
  158. adoMain.FillList(&m_listMain,2);
  159. m_str1="";
  160. m_str2="";
  161. m_str3="";
  162. m_str4="";
  163. m_str5="";
  164. m_str6="";
  165. m_intSelect=0;
  166. UpdateData(FALSE);
  167. adoMain.ExitConnect();
  168. }
  169. void CDlgYongHuGuanLi::OnClickList1(NMHDR* pNMHDR, LRESULT* pResult) 
  170. {
  171. // TODO: Add your control notification handler code here
  172. POSITION pos;
  173. int i;
  174. pos=m_listMain.GetFirstSelectedItemPosition();
  175. i=m_listMain.GetNextSelectedItem(pos);
  176. if (i>=0)
  177. {
  178. m_str1=m_listMain.GetItemText(i,0);
  179. m_str2=m_listMain.GetItemText(i,1);
  180. m_str3=m_listMain.GetItemText(i,3);
  181. m_str4=m_listMain.GetItemText(i,4);
  182. m_str5=m_listMain.GetItemText(i,5);
  183. m_str6=m_listMain.GetItemText(i,6);
  184. m_intSelect=atoi(m_listMain.GetItemText(i,2));
  185. UpdateData(FALSE);
  186. }
  187. *pResult = 0;
  188. }