Hi, I have an application with 3 forms. One is used as a splash screen, another as the main form and the third as a dialog form. I'm using the main procedure to launch my program. The program was working fine when I had no splash form, but when I added the splash form, I got a strange error.
The error occurs when I close the dialog form, I have a button on the form that closes it, it has this line of code
me.dispose()
When I click this button I get this error
'An unhandled exception of type 'System.Runtime.InteropServices.SEHException' occurred in system.windows.forms.dll
Additional information: External component has thrown an exception.'
and the program stops at this line
Application.Run(new splash)
Any one has an idea from where does this error come from????