private void button10_Click(object sender, EventArgs e)
        {
            this.Hide();
            Admission_1_ obj = new Admission_1_(this);

            obj.Show();
        }
Ejemplo n.º 2
0
 public Admission_2_(string userId, string fname, string lname, Admin a, Admission_1_ adm)
 {
     InitializeComponent();
     this.adm   = adm;
     ad         = a;
     userid     = Convert.ToInt32(userId);
     FName      = fname;
     LName      = lname;
     vaccinated = -1;
     debeties   = -1;
     normal     = -1;
     hepetitis  = -1;
     cLass      = null;
     clsRoom    = null;
     section    = null;
 }