Introduction:
This is a simple utility to display exceptions. Each exception in the chain is added to an ArrayList and displayed in reverse order in a ListView control.

Source Code:
TestException.cs
static int Main(string[] args)
{
try
{
TestException test = null;
test.TryIt();
}
catch( Exception exc)
{
ExceptionInfoDisplay.DisplayInfo( exc);
}
return( 0);
}
Gowtham RajamanickamPosted Apr 18, 2015, 3:52 AM
good one
ChrisPosted Feb 5, 2006, 6:10 PM
Hi, I was just wondering if there was a later version avaliable that didn't keep opening new windows and instead just kept a single window open and kept adding events to it??? Also that allowed execution of code to continue without closing the window??? Regards, Chris