private void linkLabel4_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            frmShowAllEmployee l = frmShowAllEmployee.getInstance();

            l.Show();
            this.Hide();
        }
Exemple #2
0
 public static frmShowAllEmployee getInstance()
 {
     if (l == null)
     {
         l = new frmShowAllEmployee();
         l.Show();
         return(l);
     }
     else
     {
         return(l);
     }
 }