SourceSafe Web Interface (SSWI) and "How can I tell if my App Blew Up?"
Looks promising. Haven't tried it yet. Let me know if you have any feedback on it. http://www.componentworkshop.com/products.aspx How can I tell if my App Blew Up (Unhandled Exception) ("What?", you say, "I never have unhandled exceptions in my applications!") The AppDomain unloads when your app blows up because of an unhandled exception. But it also does this before everything goes into the Black Hole: AppDomain domain = System.AppDomain.CurrentDomain ; domain.UnhandledException+=new UnhandledExceptionEventHandler(domain_UnhandledException); private static void domain_UnhandledException(object sender, UnhandledExceptionEventArgs e) { EventLog evt = new EventLog() ; evt.WriteEntry(e.ExceptionObject.ToString() ) ; } Unfortunately, in CLR 1.X this doesn't fire in the same AppDomain. You can try code like this, however: AppDomain domain2 = AppDomain.CreateDomain("domain2"); domain2.CreateInstance("DomainLib", "YukkaPuk.ImaDwe...