Beispiel #1
0
 public void openEmp()
 {
     if (oemp == false)
     {
         emp  = new Employee(this);
         oemp = true;
     }
     emp.back    = this;
     emp.adminID = this.adminID;
     emp.Show();
     this.Hide();
 }