Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.91 KB | None | 0 0
  1. Le informazioni su come richiamare il debug JIT (Just-In-Time) anziché questa finestra
  2. sono riportate in fondo al messaggio.
  3.  
  4. ************** Testo dell'eccezione **************
  5. System.DivideByZeroException: Tentativo di divisione per zero.
  6. in System.Decimal.FCallDivide(Decimal& result, Decimal d1, Decimal d2)
  7. in System.Decimal.op_Division(Decimal d1, Decimal d2)
  8. in Comics2ReaderV2.ImageManip.button3_Click(Object sender, EventArgs e)
  9. in System.Windows.Forms.Control.OnClick(EventArgs e)
  10. in System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
  11. in System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  12. in System.Windows.Forms.Control.WndProc(Message& m)
  13. in System.Windows.Forms.ButtonBase.WndProc(Message& m)
  14. in System.Windows.Forms.Button.WndProc(Message& m)
  15. in System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  16. in System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  17.  
  18.  
  19. ************** Assembly caricati **************
  20. mscorlib
  21. Versione assembly: 2.0.0.0
  22. Versione Win32: 2.0.50727.4952 (win7RTMGDR.050727-4900)
  23. Base di codice: file:///C:/Windows/Microsoft.NET/Framework64/v2.0.50727/mscorlib.dll
  24. ----------------------------------------
  25. Comics2ReaderV2
  26. Versione assembly: 1.0.0.0
  27. Versione Win32: 1.0.0.0
  28. Base di codice: file:///C:/Program%20Files%20(x86)/MMsoft/C2R2/Comics2ReaderV2.exe
  29. ----------------------------------------
  30. System.Windows.Forms
  31. Versione assembly: 2.0.0.0
  32. Versione Win32: 2.0.50727.4927 (NetFXspW7.050727-4900)
  33. Base di codice: file:///C:/Windows/assembly/GAC_MSIL/System.Windows.Forms/2.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
  34. ----------------------------------------
  35. System
  36. Versione assembly: 2.0.0.0
  37. Versione Win32: 2.0.50727.4927 (NetFXspW7.050727-4900)
  38. Base di codice: file:///C:/Windows/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
  39. ----------------------------------------
  40. System.Drawing
  41. Versione assembly: 2.0.0.0
  42. Versione Win32: 2.0.50727.4927 (NetFXspW7.050727-4900)
  43. Base di codice: file:///C:/Windows/assembly/GAC_MSIL/System.Drawing/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
  44. ----------------------------------------
  45. System.Xml
  46. Versione assembly: 2.0.0.0
  47. Versione Win32: 2.0.50727.4927 (NetFXspW7.050727-4900)
  48. Base di codice: file:///C:/Windows/assembly/GAC_MSIL/System.Xml/2.0.0.0__b77a5c561934e089/System.Xml.dll
  49. ----------------------------------------
  50. System.Configuration
  51. Versione assembly: 2.0.0.0
  52. Versione Win32: 2.0.50727.4927 (NetFXspW7.050727-4900)
  53. Base di codice: file:///C:/Windows/assembly/GAC_MSIL/System.Configuration/2.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
  54. ----------------------------------------
  55. mscorlib.resources
  56. Versione assembly: 2.0.0.0
  57. Versione Win32: 2.0.50727.4952 (win7RTMGDR.050727-4900)
  58. Base di codice: file:///C:/Windows/Microsoft.NET/Framework64/v2.0.50727/mscorlib.dll
  59. ----------------------------------------
  60. System.Windows.Forms.resources
  61. Versione assembly: 2.0.0.0
  62. Versione Win32: 2.0.50727.4927 (NetFXspW7.050727-4900)
  63. Base di codice: file:///C:/Windows/assembly/GAC_MSIL/System.Windows.Forms.resources/2.0.0.0_it_b77a5c561934e089/System.Windows.Forms.resources.dll
  64. ----------------------------------------
  65.  
  66. ************** Debug JIT **************
  67. Per attivare il debug JIT, è necessario impostare il valore
  68. jitDebugging nella sezione system.windows.forms del file di configurazione
  69. dell'applicazione o del computer (machine.config).
  70. L'applicazione inoltre deve essere compilata con il debug
  71. attivato.
  72.  
  73. Ad esempio:
  74.  
  75. <configuration>
  76. <system.windows.forms jitDebugging="true" />
  77. </configuration>
  78.  
  79. Quando il debug JIT è attivato, tutte le eccezioni non gestite
  80. vengono inviate al debugger JIT registrato nel computer,
  81. anziché essere gestite da questa finestra di dialogo.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement