473,326 Members | 2,076 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,326 software developers and data experts.

Unhandled exception

Hi there,

Im experiencing an unhandled exception that seems to be impossible for
me to catch. I am launching an assembly of mine from within another
assembly using the Process object. Once the process finishes it causes an
unhandled exception, even though both host and child process have all thread
exceptions handled.

Unfortunately this is making debugging a complete and utter nightmare as
the application has already terminated by the time the standard unhandled
excaption dialog appears with this info in...

EventType : clr20r3 P1 : <child assembly> P2 : 1.3.2323.22525
P3 : 44648dad
P4 : mscorlib P5 : 2.0.0.0 P6 : 4333ab80 P7 : 11d0 P8 : 27
P9 : system.applicationexception

Any ideas what this is supposed to mean exactly? It has no relevance to
me but if I could just know what the exception is exactly then this could
help, "applicationexception" doesn't help me in the slightest as i have 3
assemblies that derive from said applicationexception that are being used
during this process.

I can only presume that this error could be down to the disposing of an
object by the garbage collector, I cant think of any other reason why code
would remain to be processed after the last line of code has been passed..

Thanks loads in advance if anyone can help me with this.

Nick.
May 12 '06 #1
3 2962
Hi there,

Just to add, I've managed to get rid of the exception by disposing a
specific object before the application exits. The object was only disposing
a mutex so I'm not quite sure how this would cause an exception at garbage
collection time.. Anyway, it's gone now so I guess I shouldn't complain!

Nick.

"NickP" <a@a.com> wrote in message
news:uG**************@TK2MSFTNGP04.phx.gbl...
Hi there,

Im experiencing an unhandled exception that seems to be impossible for
me to catch. I am launching an assembly of mine from within another
assembly using the Process object. Once the process finishes it causes an
unhandled exception, even though both host and child process have all
thread exceptions handled.

Unfortunately this is making debugging a complete and utter nightmare
as the application has already terminated by the time the standard
unhandled excaption dialog appears with this info in...

EventType : clr20r3 P1 : <child assembly> P2 : 1.3.2323.22525
P3 : 44648dad
P4 : mscorlib P5 : 2.0.0.0 P6 : 4333ab80 P7 : 11d0 P8 : 27
P9 : system.applicationexception

Any ideas what this is supposed to mean exactly? It has no relevance
to me but if I could just know what the exception is exactly then this
could help, "applicationexception" doesn't help me in the slightest as i
have 3 assemblies that derive from said applicationexception that are
being used during this process.

I can only presume that this error could be down to the disposing of an
object by the garbage collector, I cant think of any other reason why code
would remain to be processed after the last line of code has been passed..

Thanks loads in advance if anyone can help me with this.

Nick.

May 12 '06 #2
Nick,
You could use the AppDomain object to register a handler for Unhandled
Exceptions in your app, allowing you to see more detail about the
problem you're occuring.
Module Module1

Sub Main()

AddHandler AppDomain.CurrentDomain.UnhandledException,
AddressOf Unhandled

Throw New Exception("Unhandled Exception")

End Sub

Private Sub Unhandled(ByVal sender As Object, ByVal e As
UnhandledExceptionEventArgs)

Console.WriteLine("Unhandled Exception of Type " &
e.ExceptionObject.GetType.ToString)
Console.WriteLine(e.ExceptionObject.ToString)
Console.ReadLine()

End Sub

End Module
john

May 12 '06 #3
Hi John,

Indeed I have been, and also the thread exception. But neither would
catch this exception, I believe it was because the application had already
terminated and it was occuring during garbage collection. All sorted now
though thankfully, cheers for your input.

Nick.

"jayeldee" <ja******@gmail.com> wrote in message
news:11**********************@d71g2000cwd.googlegr oups.com...
Nick,
You could use the AppDomain object to register a handler for Unhandled
Exceptions in your app, allowing you to see more detail about the
problem you're occuring.
Module Module1

Sub Main()

AddHandler AppDomain.CurrentDomain.UnhandledException,
AddressOf Unhandled

Throw New Exception("Unhandled Exception")

End Sub

Private Sub Unhandled(ByVal sender As Object, ByVal e As
UnhandledExceptionEventArgs)

Console.WriteLine("Unhandled Exception of Type " &
e.ExceptionObject.GetType.ToString)
Console.WriteLine(e.ExceptionObject.ToString)
Console.ReadLine()

End Sub

End Module
john

May 15 '06 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
by: Chuck Hartman | last post by:
I have a Windows service that requests web pages from a site using an HttpWebRequest object. When I try to request a page from an ASP.NET 2 site, I get a WebException with message "The remote...
5
by: Dave Stewart | last post by:
I recently wrote my first Vb.net application, or at least my first complex app since moving up from vb6. When run from the VS.NET IDE, the program shows no errors and runs fine. When the output exe...
5
by: Lucvdv | last post by:
Can someone explain why this code pops up a messagebox saying the ThreadAbortException wasn't handled? The first exception is reported only in the debug pane, as expected. The second (caused by...
5
by: Samuel R. Neff | last post by:
When you have an unhandled exception in vb.net how do you view the exception information in the debugger? In C# the debugger creates a local variable that points to the exception and you can...
0
by: Colmeister | last post by:
I recently read Jason Clark's excellent article on Unhandled Exceptions (http://msdn.microsoft.com/msdnmag/issues/04/06/NET/default.aspx) and have attempted to incorporate the features he talks...
5
by: Simon Tamman {Uchiha Jax} | last post by:
Now this is bugging me. I just released software for a client and they have reported an unhandled stack overflow exception. My first concern is that the entirity of the UI and any threaded...
0
by: Bob | last post by:
If I induce and unhandled exception in my vb.net code for instance using '-- just a simple "object not initialized" exception (should read "as new") Dim x As Specialized.NameValueCollection ...
1
by: Bob | last post by:
In Vs 2005 you have new applicationsEvents.vb I was testing it in a simple app and found that it was easier to implement unhandled exception management tah it was in Vs2003 (vb.net) You can, if you...
4
by: bg_ie | last post by:
Hi, I have the following Program.cs - namespace TestFrameworkApplication { static class Program { /// <summary> /// The main entry point for the application.
5
by: =?Utf-8?B?c3VydHVyeg==?= | last post by:
Hi, I feel like a noob for asking this. When I publish a VB windows application, I want to disable the ability of the the user to continue when there is an unhandled exception. For example,...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.