Exemplo n.º 1
0
 private void txtSearch_TextChanged(object sender, EventArgs e)
 {
     DbStudent.DisplayAndSearch("SELECT ID, Name, Reg, Class, Section FROM student_table WHERE Name Like'%" + txtSearch.Text + "%'", dataGridView);
 }
Exemplo n.º 2
0
 public void Display()
 {
     DbStudent.DisplayAndSearch("SELECT ID, Name, Reg, Class, Section FROM student_table", dataGridView);
 }