Archive for January 19th, 2007
Creating single instances of MDI Children

I needed a way to create a single instance of an MDI Child form within my MDIContainer form. After doing some research, I found the following code at CodeProject that did just the trick in a few lines of code. This will stop those pesky QA guys from chewing up all the system memory from opening hundreds of instances of my MDI Children.

Singleton Theory of Forms [@ CodeProject]

Happy Coding!