void TextBox10TextChanged(object sender, EventArgs e) { string nama = textBox10.Text.ToString(); ViewCari cari = new ViewCari(); DataTable tabel = new DataTable(); tabel = cari.cari_databuku(nama); dataGridView1.DataSource = tabel; }
void TextBox7TextChanged(object sender, EventArgs e) { string nama = textBox7.Text.ToString(); ViewCari cari = new ViewCari(); DataTable tabel = new DataTable(); tabel = cari.tampilpencarian_anggota(nama); dataGridView1.DataSource = tabel; }
void SearchTextChanged(object sender, EventArgs e) { string nama = search.Text.ToString(); ViewCari cari = new ViewCari(); DataTable tabel = new DataTable(); tabel = cari.tampilpencarian(nama); dataGridView1.DataSource = tabel; }
void TextBox1TextChanged(object sender, EventArgs e) { string nomor = textBox1.Text.ToString(); ViewCari cari = new ViewCari(); DataTable tabel = new DataTable(); tabel = cari.cari_peminjaman(nomor); dataGridView1.DataSource = tabel; }