예제 #1
0
 private void bt_xoa_Click(object sender, EventArgs e)
 {
     if (MessageBox.Show("Bạn có muốn xóa bộ phận có mã là " + txt_mabophan.Text + " hay không?", "Thông báo", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
     {
         BUS_Bophan.delete(txt_mabophan.Text);
         MessageBox.Show("Xóa thành công", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information);
         loadFull();
     }
 }
예제 #2
0
        // load combobox bo phan
        public void LoadComboboxBophan()
        {
            List <Bophan> bp = new List <Bophan>();

            bp = BUS_Bophan.compoboxBophan();
            combBophan.Text = "Chọn bộ phận";
            for (int i = 0; i < bp.Count; i++)
            {
                combBophan.Items.Add(bp[i].Tenbophan);
                combBophan.DisplayMember = bp[i].Tenbophan;
                combBophan.ValueMember   = bp[i].Mabophan;
            }
        }
예제 #3
0
 private void bt_capnhat_Click(object sender, EventArgs e)
 {
     if (flag)
     {
         if (txt_mabophan.Text == "" || txt_tenbophan.Text == "")
         {
             lb_loi.Text = "Hãy điền đầy đủ thông tin.";
         }
         else if (BUS_Bophan.KiemTraMabophan(txt_mabophan.Text) == "true")
         {
             lb_loi.Text = "Mã bộ phận này đã tồn tại.";
         }
         else
         {
             if (BUS_Bophan.insert(txt_mabophan.Text, txt_tenbophan.Text) == "true")
             {
                 MessageBox.Show("Thêm thành công", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information);
                 loadFull();
             }
             else
             {
                 MessageBox.Show("Lỗi từ hệ thống, hãy liên hệ với bộ phận kỹ thuật.", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information);
                 loadFull();
             }
         }
     }
     else
     {
         if (txt_mabophan.Text == "" || txt_tenbophan.Text == "")
         {
             lb_loi.Text = "Hãy điền đầy đủ thông tin.";
         }
         else if (BUS_Bophan.KiemTraMabophan_sua(macu, txt_mabophan.Text) == "true")
         {
             lb_loi.Text = "Mã bộ phận này đã tồn tại.";
         }
         else
         {
             if (BUS_Bophan.update(macu, txt_mabophan.Text, txt_tenbophan.Text) == "true")
             {
                 MessageBox.Show("Sửa thành công", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information);
                 loadFull();
             }
             else
             {
                 MessageBox.Show("Lỗi từ hệ thống, hãy liên hệ với bộ phận kỹ thuật.", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information);
                 loadFull();
             }
         }
     }
 }
예제 #4
0
 public void loadFull()
 {
     txt_mabophan.Text      = txt_tenbophan.Text = "";
     txt_mabophan.Enabled   = txt_tenbophan.Enabled = false;
     grid_bophan.Enabled    = bt_them.Enabled = true;
     bt_restart.Enabled     = bt_capnhat.Enabled = false;
     lb_loi.Text            = "";
     grid_bophan.DataSource = BUS_Bophan.compoboxBophan();
     binding();
     if (grid_bophan.MainView.RowCount > 0)
     {
         bt_sua.Enabled = bt_xoa.Enabled = true;
     }
     else
     {
         bt_xoa.Enabled = bt_sua.Enabled = false;
     }
 }