private void toolStripButton1_Click(object sender, EventArgs e)
        {
            FichePatient fichePatient = new FichePatient(this);

            fichePatient.ShowDialog();
        }
        private void modifierToolStripMenuItem_Click(object sender, EventArgs e)
        {
            FichePatient fichePatient = new FichePatient(this, dataGridView1.CurrentRow.Cells[0].Value.ToString(), 2);

            fichePatient.ShowDialog();
        }
Beispiel #3
0
        private void addPatientToolStripMenuItem_Click(object sender, EventArgs e)
        {
            FichePatient fiche = new FichePatient(this);

            fiche.ShowDialog();
        }