private void BtnOut_Click(object sender, EventArgs e) { this.Hide(); frmAccount frm = new frmAccount(); frm.ShowDialog(); }
private void BtnAdmin_Click(object sender, EventArgs e) { using (frmAccount frm = new frmAccount()) { this.Hide(); frm.ShowDialog(); } }
private void Button2_Click(object sender, EventArgs e) { this.Hide(); using (frmAccount frm = new frmAccount()) { frm.ShowDialog(); } }