private void regbtn_Click(object sender, EventArgs e)
        {
            this.Close();
            uregistration reg = new uregistration();

            reg.Show();
            reg.StartPosition = FormStartPosition.Manual;
            reg.Location      = new Point(345, 38);
        }
Beispiel #2
0
 private void reglbl_Click(object sender, EventArgs e)
 {
     if (registrations == null)
     {
         registrations             = new uregistration();
         registrations.MdiParent   = this;
         registrations.FormClosed += Registrations_FormClosed;
         registrations.Show();
     }
     else
     {
         registrations.Activate();
     }
 }
Beispiel #3
0
 private void Registrations_FormClosed(object sender, FormClosedEventArgs e)
 {
     registrations = null;
     //throw new NotImplementedException();
 }