private void Help(object sender, EventArgs e) { Help_Form frm = new Help_Form(); frm.Location = this.Location; frm.StartPosition = FormStartPosition.Manual; frm.FormClosing += delegate { this.Show(); }; frm.Show(); this.Hide(); }
/* * Access the Help Menu */ private void Help(object sender, EventArgs e) { // This function calls the Help_Form, opens it, and hides the current form. Help_Form frm = new Help_Form(); frm.Location = this.Location; frm.StartPosition = FormStartPosition.Manual; frm.FormClosing += delegate { this.Show(); }; frm.Show(); this.Hide(); }