Example #1
0
        private void bttnAccount_Click(object sender, EventArgs e)
        {
            accountForm account = new accountForm();

            account.Show();
            this.Close();
        }
Example #2
0
        /// <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();
        }