"Error creating window handle" upon Opening Window with another Window Maximized
I am having a problem with my MDI application. I noticed that if I have one of my windows Maximized inside the MDI Parent and I load another form, the program will crash with the error:
An unhandled exception of type 'System.OutOfMemoryException' occurred in system.windows.forms.dll
Additional information: Error creating window handle.
The big problem is, this only occurs in about half of my forms. I can replicate this error consistently with the same forms, even if I change the form that is maximized. I tried using Breakpoints to trace the error but it seems to be occuring the the forms Show() function and not my code. What could be causing this error? What could I do to determine what is causing the error?

