Why I'm getting this error when running an animated GIF?

piscis

Regular
Joined
Jun 30, 2003
Messages
54
Why I'm getting this error when running an animated GIF?

The form starts OK and the GIF animation starts running half way when it suddently gets interrupted by this error.

Code:
An unhandled exception of type 'System.Runtime.InteropServices.ExternalException' occurred in system.windows.forms.dll

Please Help

Thanks

Andy
 
put

Visual Basic:
try

<yourcode>

catch

dim err as Exception
msgbox(err.message)

end try

then you can continue on your form and see what broke, even if this doesnt really help you, you should have some error handling just incase your program breaks, very useful! :)
 
Back
Top