Let's say I open a form in the following way:
FormSomething FormSomething = new FormSomething(SomethingId);
FormSomething.Show();
In my code, there is a possibility for many FormSomething's to be open at once. How do I close a specific instance of a FormSomething?
Each instance of FormSomething has an Id associated with it.
Edit: I guess what I'm really trying to get at is being able to externally close a specific instance of FormSomething.
I'd really appreciate any tips! :D