private void admStartPageBtnChangePassword_Click(object sender, EventArgs e)
        {
            this.Hide();
            changePassword cp = new changePassword();

            cp.Show();
        }
Example #2
0
        private void userBookSeacrhBtnChangePassword_Click(object sender, EventArgs e)
        {
            // hide current form and show next

            this.Hide();
            changePassword cp = new changePassword();

            cp.Show();
        }