private void linkLabel4_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { frmShowAllEmployee l = frmShowAllEmployee.getInstance(); l.Show(); this.Hide(); }
public static frmShowAllEmployee getInstance() { if (l == null) { l = new frmShowAllEmployee(); l.Show(); return(l); } else { return(l); } }