Exemplo n.º 1
0
 private void recherche_TextChanged(object sender, EventArgs e)
 {
     try
     {
         Table.DataSource = d.recherche_UsignSql("select * from Liste_Paiement where id is not null and  patient LIKE '%" + recherche.Text + "%''");
     }
     catch (Exception ex)
     { MessageBox.Show(ex.Message); }
 }
Exemplo n.º 2
0
 private void rech_TextChanged(object sender, EventArgs e)
 {
     try
     {
         Table.DataSource = d.recherche_UsignSql("select * from Liste_Consommation  where id is not null and  produit LIKE '%" + rech.Text + "%' or patient like '%" + rech.Text + "%'");
     }
     catch (Exception ex)
     { MessageBox.Show(ex.Message); }
 }
Exemplo n.º 3
0
 private void rech_TextChanged(object sender, EventArgs e)
 {
     try
     {
         Table.DataSource = d.recherche_UsignSql("select * from Medicament  where id is not null and  designation LIKE '%" + rech.Text + "%' or dosage LIKE '%" + rech.Text + "%'");
     }
     catch (Exception ex)
     { MessageBox.Show(ex.Message); }
 }
Exemplo n.º 4
0
 private void rech_TextChanged(object sender, EventArgs e)
 {
     try
     {
         Table.DataSource = d.recherche_UsignSql("select * from Liste_Examen  where id is not null and  Patient LIKE '%" + rech.Text + "%' or resultat='" + result.Text + "' or Symptome LIKE '%" + rech.Text + "%'");
     }
     catch (Exception ex)
     { MessageBox.Show(ex.Message); }
 }
Exemplo n.º 5
0
 private void rech_TextChanged(object sender, EventArgs e)
 {
     try
     {
         Table.DataSource = d.recherche_UsignSql("select * from Adresse  where id is not null and  numero LIKE '%" + rech.Text + "%' or Avenue LIKE '%" + rech.Text + "%' or Quartier LIKE '%" + quartier.Text + "%'");
     }
     catch (Exception ex)
     { MessageBox.Show(ex.Message); }
 }