コード例 #1
0
ファイル: frmLop.cs プロジェクト: doanvanhiep/OOSD
        private void btnLuu_Click(object sender, EventArgs e)
        {
            try
            {
                string ten  = txtTen.Text.Trim();
                int    idgv = Convert.ToInt32(cbxGV.SelectedValue.ToString());
                string idmh = cbxMH.SelectedValue.ToString();
                if (ten != "")
                {
                    bool kt = lopBLL.ThemLop(ref error, ten, idgv, idmh);
                    if (kt)
                    {
                        MessageBox.Show("Bạn đã thêm thành công !!!", "Thông báo",
                                        MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1);

                        load();
                    }
                }
                else
                {
                    MessageBox.Show("Nhập tên lớp !!!", "Thông báo",
                                    MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1);
                }
            }
            catch (Exception)
            {
                MessageBox.Show("Lỗi Thêm !!!", "Lỗi",
                                MessageBoxButtons.OK, MessageBoxIcon.Error, MessageBoxDefaultButton.Button1);
            }
            dong();
        }
コード例 #2
0
ファイル: UcLop.cs プロジェクト: xuan2261/QLSV_NC
 private void btnGhi_Click(object sender, EventArgs e)
 {
     try
     {
         LayThongTin();
         if (action == "them")
         {
             if (lop.maLop == string.Empty)
             {
                 MessageBox.Show("Mã lớp không được để trống.");
             }
             else if (lop.tenLop == string.Empty)
             {
                 MessageBox.Show("Tên lớp không được để trống.");
             }
             if (lop.maGVCN == string.Empty)
             {
                 MessageBox.Show("Mã giáo viên chủ nhiệm không được để trống.");
             }
             else
             {
                 if (bll.ThemLop(lop) == true)
                 {
                     MessageBox.Show("Thêm thành công");
                     dgvDsLop.DataSource = bll.TimKiemLop(lop.maLop);
                 }
                 else
                 {
                     MessageBox.Show("Không thành công");
                 }
             }
             LockControlGhi();
         }
         else if (action == "sua")
         {
             if (bll.SuaLop(lop) == true)
             {
                 MessageBox.Show("Sửa thành công.");
                 dgvDsLop.DataSource = bll.TimKiemLop(lop.maLop);
             }
             else
             {
                 MessageBox.Show("Không thành công.");
             }
             LockControlGhi();
         }
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.ToString());
     }
 }
コード例 #3
0
        private void ThemLop()
        {
            maLop = LopBLL.AutoMaLop();
            Entities.Lop lop = new Entities.Lop(maLop,
                                                cboLoaiLop.SelectedValue.ToString(),
                                                txtTaoLop.Text,
                                                Int32.Parse(txtNam.Text),
                                                cboGVCN.SelectedValue.ToString(),
                                                Int32.Parse(txtSS.Text));

            if (!LopBLL.ThemLop(lop))
            {
                MessageBox.Show("Thêm lớp thất bại");
            }
        }
コード例 #4
0
ファイル: frmQLChung_Lop.cs プロジェクト: vanhongha/QLNT_OODA
 void ThemLop(string maLop, string maLoaiLop, string maNienKhoa, string maGV, string tenLop)
 {
     if (LopBLL.ThemLop(maLop,
                        maLoaiLop,
                        maNienKhoa,
                        maGV,
                        tenLop))
     {
         MessageBox.Show("Thêm lớp thành công!",
                         "Thông báo",
                         MessageBoxButtons.OK,
                         MessageBoxIcon.Information);
         listLop = LopBLL.GetListLop();
         LoadDatagridView();
     }
 }