예제 #1
0
        private void btnSuivantPatient_Click(object sender, EventArgs e)
        {
            // SUIVANT = WIZZ04
            WIZZ04 c = new WIZZ04(this)
            {
                Tag = this
            };

            c.Show();
            Hide();
        }
예제 #2
0
 private void btnPrecedentPrescription_Click(object sender, EventArgs e)
 {
     // PRECEDENT = WIZZ03
     if (creatorP != null)
     {
         creatorP.Show();
     }
     // PRECEDENT = WIZZ07
     else if (creatorR != null)
     {
         creatorR.Show();
     }
     this.Hide();
 }