Ejemplo n.º 1
0
        private void btnAfficherPracticien_Click(object sender, EventArgs e)
        {
            string          p  = ucRapportValide1.txtBoxCodePra.Text.ToString();
            short           pr = Convert.ToInt16(p);
            FrmUnPracticien fp = new FrmUnPracticien(pr);

            fp.ShowDialog();
        }
Ejemplo n.º 2
0
 private void btnVoirPatricien_Click(object sender, EventArgs e)
 {
     if (txtNumPraticien.Text != "")
     {
         FrmUnPracticien f = new FrmUnPracticien(Int16.Parse(txtNumPraticien.Text));
         f.ShowDialog();
     }
 }