[quoted text, click to view] "Jeff S" <A@B.COM> wrote in message
news:%23pqFDODPGHA.3936@TK2MSFTNGP12.phx.gbl...
> What is a generally accepted method used to ensure that one instance, at
> most, of a form can be opened?
There isn't one because it is difficult to think of any reason why you would
want to do that.
The more usual case is that you want to create the form if it doesn't exist
OR bring an existing one to the front.
Typically I would use a private property on whatever it is that normally
controls the form so that it creates the form on demand so that something
like obj.MyForm.Show() would always work.
It might be that you have a genuine need for the form itself to be a
singleton but I have never come across a case where it was necessary.