how to change a code value in another form in c# code example
Example: C# change to different form
private void submitPassword_Click(object sender, EventArgs e)
{
options optionForm = new options();
this.Hide();
optionForm.Show();
}