A
Aaron
Is there a way in CF .NET using C# to detect whether or not a form is
already open in memory, and if so, using a conditional to show that form
rather than having to do something like this:
Form1 frm = new Form1();
frm.Show();
since that always creates another instance. I don't want users to have a
bunch of the same form open on their PPC at one time, it's just silly and a
needless waste of resources.
Thanks
already open in memory, and if so, using a conditional to show that form
rather than having to do something like this:
Form1 frm = new Form1();
frm.Show();
since that always creates another instance. I don't want users to have a
bunch of the same form open on their PPC at one time, it's just silly and a
needless waste of resources.
Thanks