Hello!
I wanted to know is there way to check that form is opend with particular name.
Would be glad if someone could help me out.
Ty.
I wanted to know is there way to check that form is opend with particular name.
Code:
if(Form.Name == senderName) // How to Check that form whit this name exists
{
Form.BringToFront();
}
else
{
Form = new Form1();
Form.Show();
}
Ty.
Comment