コード例 #1
0
        private void btnLuu_Click(object sender, EventArgs e)
        {
            NhaXuatBanObj khObj = new NhaXuatBanObj();

            addData(khObj);
            if (flagLuu == 0)
            {
                if (nxbCtr.AddData(khObj))
                {
                    MessageBox.Show("Thêm thành công!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information);
                }
                else
                {
                    MessageBox.Show("Thêm không thành công!", "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Error);
                }
            }
            else
            {
                if (nxbCtr.UpdData(khObj))
                {
                    MessageBox.Show("Sửa thành công!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information);
                }
                else
                {
                    MessageBox.Show("Sửa không thành công!", "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Error);
                }
            }
            frmNhaXuatBan_Load(sender, e);
        }
コード例 #2
0
        private void btnLuu_Click(object sender, EventArgs e)
        {
            NhaXuatBanObj khObj = new NhaXuatBanObj();

            addData(khObj);
            if (txtTenNXB.Text == "" || txtEmail.Text == "" || txtDiaChi.Text == "" || txtSoDT.Text == "" || txtMaNXB.Text == "")
            {
                MessageBox.Show("Chưa nhập đầy đủ thông tin", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Stop);
            }
            else
            {
                SqlConnection  con = new SqlConnection("Data Source=DESKTOP-D617688;Initial Catalog=PhanMemBanSach;Integrated Security=True");
                SqlDataAdapter sda = new SqlDataAdapter("Select * from  NhaXuatBan where MaNXB='" + txtEmail.Text + "'", con);
                DataSet        ds  = new DataSet();
                sda.Fill(ds);
                int i = ds.Tables[0].Rows.Count;
                if (i > 0)
                {
                    MessageBox.Show("Email " + txtEmail.Text + "đã tồn tại!");
                    ds.Clear();
                }
                else
                {
                    if (flagLuu == 0)
                    {
                        if (nxbCtr.AddData(khObj))
                        {
                            MessageBox.Show("Thêm thành công!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information);
                        }
                        else
                        {
                            MessageBox.Show("Thêm không thành công!", "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Error);
                        }
                    }
                    else
                    {
                        if (nxbCtr.UpdData(khObj))
                        {
                            MessageBox.Show("Sửa thành công!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information);
                        }
                        else
                        {
                            MessageBox.Show("Sửa không thành công!", "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Error);
                        }
                    }
                }
            }

            frmNhaXuatBan_Load(sender, e);
        }