而當客戶選中右邊的listBox中的一個選項時,可以進行相應的刪除或修改。刪除的代碼如下:
private void del_but_Click(object sender, EventArgs e)
{string uname = this.listBox1.Text;//得到listBox中所選的值
string sql = string.Format("delete from users where username='{0}'",uname);//拼寫sql語句刪除用戶
int x = new Db.ConnDb().update(sql);//調用update()方法返回影響行數
if (x > 0)
{//根據返回的影響行數判斷刪除是否成功
MessageBox.Show("刪除成功!");
} else{
MessageBox.Show("刪除失敗!"); } }
刪除之後的結果如下:
在點擊“更新”按鈕之後,應該彈出一個窗口顯示客戶所選用戶的信息供客戶更新。更新的代碼如下 :
private void upa_but_Click(object sender, EventArgs e)
{ string uname = this.listBox1.Text;//得到listBox中所選的用戶信息
new upd(uname).ShowDialog();//彈出要更新窗口upd.cs }