![]() |
![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() |
| Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks. |
| |||||||
| |
| | #1 (permalink) |
| | How catch unhandled Exception in WPF Project I my Forms Application I catch unhandled Exceptions this way and show them in a custom ErrorDialog: Public Shared Sub Main() AddHandler System.Windows.Forms.Application.ThreadException, AddressOf OnVitoThreadError AddHandler AppDomain.CurrentDomain.UnhandledException, AddressOf OnVitoUnhandledError Try m_Application = New MyCustomApplication m_Application.Run() Catch ex As Exception ErrorDialog.ShowError(ex) End Try End Sub Private Shared Sub OnVitoUnhandledError(ByVal sender As Object, ByVal e As UnhandledExceptionEventArgs) MyErrorDialog.ShowError(ex) If e.IsTerminating Then Environment.Exit(-1) End Sub Private Shared Sub OnVitoThreadError(ByVal sender As Object, ByVal e As System.Threading.ThreadExceptionEventArgs) LogFacade.LogCriticalError("Nicht behandelter Fehler ThreadException", e.Exception) MyErrorDialog.ShowError(e.Exception) End Sub If I do the same Sub Main in a WPF Project my Error never will shown. What kind of Event I have to handle? |
My System Specs![]() |
| | #2 (permalink) |
| | Re: How catch unhandled Exception in WPF Project You may have to work with App_DispatcherUnhandledException. I was just reading about it today, I haven't used it yet. Take a look at http://msdn2.microsoft.com/en-us/library/ms743714.aspx for an example of how it's implemented. It's about half way down the page. You can also go here for more info: http://msdn2.microsoft.com/en-us/lib...exception.aspx On Aug 15, 8:46 am, Horst Klein <HorstKl...@discussions.microsoft.com> wrote: > I my Forms Application I catch unhandled Exceptions this way and show them > in a custom ErrorDialog: > > Public Shared Sub Main() > AddHandler System.Windows.Forms.Application.ThreadException, AddressOf > OnVitoThreadError > AddHandler AppDomain.CurrentDomain.UnhandledException, AddressOf > OnVitoUnhandledError > > Try > m_Application = New MyCustomApplication > m_Application.Run() > Catch ex As Exception > ErrorDialog.ShowError(ex) > End Try > End Sub > > Private Shared Sub OnVitoUnhandledError(ByVal sender As Object, ByVal e As > UnhandledExceptionEventArgs) > MyErrorDialog.ShowError(ex) > If e.IsTerminating Then Environment.Exit(-1) > End Sub > > Private Shared Sub OnVitoThreadError(ByVal sender As Object, ByVal e As > System.Threading.ThreadExceptionEventArgs) > LogFacade.LogCriticalError("Nicht behandelter Fehler ThreadException", > e.Exception) > MyErrorDialog.ShowError(e.Exception) > End Sub > > If I do the same Sub Main in a WPF Project my Error never will shown. > What kind of Event I have to handle? |
My System Specs![]() |
| | #3 (permalink) |
| | Re: How catch unhandled Exception in WPF Project Hi Mark Thanks a lot for your answer. I find yesterday the DispatcherUnhandledException and build a simple project to find a way to solfe the problem. In my application i start a new thread to show the windows. And I think thats the reason why it dons't work (At designtime it works. on runtime not) Do you know how I have to handle exceptions in thread. See my sample project in the attachment. Best regards |
My System Specs![]() |
| | #4 (permalink) |
| | Re: How catch unhandled Exception in WPF Project I'm sorry Horst, unfortunately I don't know how to do this yet. I haven't had a chance to play around in this area. ![]() "Horst Klein" wrote: > Hi Mark > > Thanks a lot for your answer. > I find yesterday the DispatcherUnhandledException and build a simple project > to find a way to solfe the problem. > > In my application i start a new thread to show the windows. > And I think thats the reason why it dons't work (At designtime it works. on > runtime not) > Do you know how I have to handle exceptions in thread. > See my sample project in the attachment. > > Best regards > > > |
My System Specs![]() |
| | #5 (permalink) |
| | Re: How catch unhandled Exception in WPF Project Hi Mark No problem I have open an supportrequest to the MS-Partner boys. To fix to Problem. Best regards Horst |
My System Specs![]() |
| | #6 (permalink) |
| | Re: How catch unhandled Exception in WPF Project Salut Horst, Du bist in der Schweiz, gäll? Wo schaffst du? Laurent PS: Du kannst auf diese Email Adresse antworten. Horst Klein wrote: > Hi Mark > > No problem > > I have open an supportrequest to the MS-Partner boys. > To fix to Problem. > > Best regards > Horst > > -- Laurent Bugnion [MVP ASP.NET] Software engineering, Blog: http://www.galasoft.ch PhotoAlbum: http://www.galasoft.ch/pictures Support children in Calcutta: http://www.calcutta-espoir.ch |
My System Specs![]() |
| | #7 (permalink) |
| | Re: How catch unhandled Exception in WPF Project Ok great! Be sure to post what you find out. ![]() "Horst Klein" wrote: > Hi Mark > > No problem > > I have open an supportrequest to the MS-Partner boys. > To fix to Problem. > > Best regards > Horst > > > |
My System Specs![]() |
| Thread Tools | |
| |
Similar Threads | ||||
| Thread | Forum | |||
| Microsoft .NET Framework Unhandled exception...... | General Discussion | |||
Unhandled Exception has occured in your application | General Discussion | |||
| Unhandled Exception in Console Application | .NET General | |||
| Unhandled exception 0xC0000005 in migcore.dll when upgrading to Vi | Vista General | |||