M
Mike Walters
I have a Appication starting thought a Module Main sub
<System.STAThread()> _
Public Sub Main()
System.Windows.Forms.Application.EnableVisualStyles()
System.Windows.Forms.Application.Run(splash)
End Sub
This works great, I start my splash screen and move on from there, now
from my main form I have a about menu option. I want the about frm to
be a model form so I use
Dim frmAbout as new About
frmAbout.ShowDialog()
This works also. but…
When I close frmAbout I get a error
An unhandled exception of type
'System.Runtime.InteropServices.SEHException' occurred in
system.windows.forms.dll
Additional information: External component has thrown an exception.
Thanks all
Mike
<System.STAThread()> _
Public Sub Main()
System.Windows.Forms.Application.EnableVisualStyles()
System.Windows.Forms.Application.Run(splash)
End Sub
This works great, I start my splash screen and move on from there, now
from my main form I have a about menu option. I want the about frm to
be a model form so I use
Dim frmAbout as new About
frmAbout.ShowDialog()
This works also. but…
When I close frmAbout I get a error
An unhandled exception of type
'System.Runtime.InteropServices.SEHException' occurred in
system.windows.forms.dll
Additional information: External component has thrown an exception.
Thanks all
Mike