G
Guest
See my previous post about a slightly naughty animated gif giving the above
error message.
What is bad is that when this happens recovery is yucky at best.
I have the following in the appdomain unhandled exception handler.
Private Shared Sub AppDomainException(ByVal sender As Object,
ByVal t as System.UnhandledExceptionEventArgs)
ErrorHandler(t.ExceptionObject.ToString)
End Sub
Private Shared Sub ErrorHandler(ByVal msg As String)
Try
MsgBox(msg)
Catch ex As Exception
MsgBox("Problem in displaying error message" & vbCrLf &
ex.Message)
End Try
End Sub
PROBLEM / QUESTION: A good share of the time when the msgbox is displayed an
exception occurs and I get the second Msgbox. SUGGESTIONS PLEASE?
--
Regards,
Al Christoph
Senior Consultant
Three Bears Software, LLC
just right software @ just right prices @ 3bears.biz
Microsoft Certified Partner (ISV)
Coming soon: Windows Mail for Vista.
error message.
What is bad is that when this happens recovery is yucky at best.
I have the following in the appdomain unhandled exception handler.
Private Shared Sub AppDomainException(ByVal sender As Object,
ByVal t as System.UnhandledExceptionEventArgs)
ErrorHandler(t.ExceptionObject.ToString)
End Sub
Private Shared Sub ErrorHandler(ByVal msg As String)
Try
MsgBox(msg)
Catch ex As Exception
MsgBox("Problem in displaying error message" & vbCrLf &
ex.Message)
End Try
End Sub
PROBLEM / QUESTION: A good share of the time when the msgbox is displayed an
exception occurs and I get the second Msgbox. SUGGESTIONS PLEASE?
--
Regards,
Al Christoph
Senior Consultant
Three Bears Software, LLC
just right software @ just right prices @ 3bears.biz
Microsoft Certified Partner (ISV)
Coming soon: Windows Mail for Vista.