problem about building-development-and-diagnostic-tools-for-net-Collection of common programming errors
msdn
archived-forums-a-b-forums building-development-and-diagnostic-tools-for-net
I’m having console app to create list of counters on perfmon. Its working and creating fine for all the boxes. For one specific box only its giving error while executing that console app.Error isUnhandled Exception: System.FormatException: Input string was not in a correct format. at System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) at System.Number.ParseInt32(String s, NumberStyles style,
msdn
msdn
archived-forums-a-b-forums building-development-and-diagnostic-tools-for-net
Hello,Well, I have a problem with a dynamic debuging.I am not using il.emit But using namespace System::CodeDom;using namespace System::Reflection;to create my assembly dynamically.My program is winform program written in Managed c++.I compile dynamically a dll in vb.net. It works well. To execute afunction in my dll I use the invoke function. It works well.However, I would like, if there is a runtime error in my vb.netexecution, launch the debugger.When I invoke the method, I have a window, whi
msdn
msdn
archived-forums-a-b-forums building-development-and-diagnostic-tools-for-net
Hi all,When I need to ajust unhandled-exception debugger behaviour on Microsoft Windows Server 2000 (2003), I realize that there is no such key as HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NETFramework\DbgJITDebugLaunchSettingSo the question is – where is the analogous of parameter at the Sever OS?Thanks a lot!
msdn
archived-forums-a-b-forums building-development-and-diagnostic-tools-for-net
Hi,I am getting a error while trying to write to a custom created performance counter from a remote machine ?Unhandled Exception: System.InvalidOperationException: Cannot write to a Performance Counter in a remote machine. at System.Diagnostics.PerformanceCounter.Initialize() at System.Diagnostics.PerformanceCounter.set_RawValue(Int64 value)Does this mean i cannot write to a performance counter from a remote machine ?Thanks-Balaji k
msdn
archived-forums-a-b-forums building-development-and-diagnostic-tools-for-net
Hello,I would like to catch all the excpetions in my application (handled + unhandled excpetion) and write to to a trace i have. The catching should be in-process (from the executable code).I know how catch the unhandled exceptions (registering to the event in the appDomain). What i need to know is how to register to the HANDLED exceptions.Many thanks,Eran.
msdn
archived-forums-a-b-forums building-development-and-diagnostic-tools-for-net
Hi All,I use MDBG to debug a .NET application, which throws Unhandled Exception from some code. MDBG could capture it easily. It give below hints.STOP: Unhandled Exception thrownException=…… …This is unhandled exception, continuing will end the processBut i want to let debuggee popup up an Unhandled Exception Dialog, then give the user a choice about whether continue or quit. It is the default behavior when CLR meet Unhandled Exception. When i debug the application within VS2005, it will
Originally posted 2013-11-27 12:02:43.