コード例 #1
0
        private void btnLuu_Click(object sender, EventArgs e)
        {
            try
            {
                NhanvienDao nvdao    = new NhanvienDao();
                bool        gioitinh = true;
                if (cboGioiTinh.SelectedIndex == 1)
                {
                    gioitinh = false;
                }
                string macv = listchucvu.Where(p => p.TenCV == cboQuyenHan.Text).Select(l => l.MaCV).SingleOrDefault();

                nvdao.suanhanvien(txtMaNV.Text, macv, txtHoTenNV.Text, txtSdt.Text, gioitinh, txtDiaChi.Text, cboMaNVQL.Text, dtngaysinh.DateTime);

                XtraMessageBox.Show("Đã sửa thành công!!");
                loadlaigridview();
            }

            catch (Exception ex)
            {
                string   loi      = ex.InnerException.ToString();
                string[] loichia  = loi.Split('\n');
                string[] loichinh = loichia[0].Split(':');
                XtraMessageBox.Show(loichinh[2]);
            }
        }
コード例 #2
0
        private void btnLuu_Click(object sender, EventArgs e)
        {
            NhanvienDao nvdao    = new NhanvienDao();
            bool        gioitinh = true;

            if (cboGioiTinh.SelectedIndex == 1)
            {
                gioitinh = false;
            }
            string macv = listchucvu.Where(p => p.TenCV == cboQuyenHan.Text).Select(l => l.MaCV).SingleOrDefault();

            nvdao.suanhanvien(txtMaNV.Text, macv, txtHoTenNV.Text, txtSdt.Text, gioitinh, txtDiaChi.Text, cboMaNVQL.Text, dtngaysinh.DateTime);

            XtraMessageBox.Show("Đã sửa thành công!!");
            loadlaigridview();
        }