private void button1_Click(object sender, EventArgs e) { this.Hide(); FormDomain formDomain = new FormDomain(); formDomain.ShowDialog(); }
private void Login_Click(object sender, EventArgs e) { //Guide them to the next page if the Pin they entered is valid: this.Hide(); FormDomain formDomain = new FormDomain(); formDomain.ShowDialog(); }
private void registerFormButton_Click(object sender, EventArgs e) { if (this.termsCheckBox.Checked) { //If all the information on the form is filled out with proper values; then allow them to continue onto the main screen. //Guide them to the next page if the Pin they entered is valid: this.Hide(); FormDomain formDomain = new FormDomain(); formDomain.ShowDialog(); } }