private void bttnAccount_Click(object sender, EventArgs e) { accountForm account = new accountForm(); account.Show(); this.Close(); }
/// <summary> /// brings user to their account page /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void bttnAccount_Click(object sender, EventArgs e) { Queries.Log(Queries.LogLevel.DEBUG, "Account Button clicked"); accountForm account = new accountForm(); account.Show(); this.Close(); }