public bool timSach_Ten(string ten) { DB_SACH db = new DB_SACH(); SqlDataReader rd = db.Tim_TheoTen(ten.Trim()); if (rd.HasRows) { rd.Read(); if (ten.Trim() == rd.GetString(1).Trim()) { btEditMa.Text = rd.GetString(0); // btEditTen.Text = rd.GetString(1); txtTL.Text = rd.GetString(2); txtTG.Text = rd.GetString(3); //txtSLT.Text = rd.GetInt32(4).ToString(); // txtGia.Text = rd.GetDouble(5).ToString(); return(true); } //else MessageBox.Show("Không tìm thấy tên sách!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); } //else MessageBox.Show("Không tìm thấy tên sách!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); return(false); }