[ad_1]
What’s stopping you from making it a parameter in the constructor?
public Form2(bool foo)
{
}
Then when instantiating the form:
bool foo = false;
Form2 MyForm = new Form2(foo);
[ad_2]
solved Passing parameters from form 1 to form 2 [closed]