コード例 #1
0
ファイル: frmSach.cs プロジェクト: 01297462246/BookStore
        private void btnThem_Click(object sender, EventArgs e)
        {
            ET_Sach et_Sach = null;

            try
            {
                et_Sach = new ET_Sach(txtMaSach.Text
                                      , cboGH.SelectedValue.ToString()
                                      , txtTenSach.Text
                                      , txtTheLoai.Text
                                      , txtTenNXB.Text
                                      , txtTacGia.Text
                                      , txtMaNV.Text
                                      , float.Parse(txtGiaBan.Text)
                                      , dtpNXB.Value
                                      , dtpNgayNhap.Value
                                      , Int32.Parse(txtSoLuong.Text)
                                      , Int32.Parse(txtGiamGia.Text));
            }
            catch (Exception ex)
            {
                MessageBox.Show("Kiểu dữ liệu bạn nhập bị sai.Vui lòng nhập lại");
                return;
            }

            if (bus_sach.themSach(et_Sach))
            {
                MessageBox.Show("Bạn Đã thêm thành công.");
                dgvSach.DataSource = bus_sach.getSach();
            }
            else
            {
                MessageBox.Show("Bạn thêm không thành công.");
            }
        }