Need help, getting wacky error.
Here is the error I am getting:
Quote:
An unhandled exception of type 'System.OutOfMemoryException' occurred in system.windows.forms.dll
Additional information: Error creating window handle.
Ok, so I would think the system is out of memory or something. No, not it. I can open the other forms in the project. So now I think it has to do with the code some how in the form. I commented everything except the code needed to create the form in th Designer region.
Here is how I am creating the form:
Code:
Dim frmApprovalsSummary As New ApprovalsSummary
frmApprovalsSummary.MdiParent = Me.MdiParent
frmApprovalsSummary.Show()
Has anyone come accross this issue yet? What did you do to fix it.