Advertisement
Guest User

Untitled

a guest
Aug 29th, 2011
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.26 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.ArgumentOutOfRangeException: 'maxValue' deve essere maggiore di zero.
  6. Nome parametro: maxValue
  7. in System.Random.Next(Int32 maxValue)
  8. in WindowPonies.PonyActionFalling.update()
  9. in WindowPonies.Pony.moveTimer_Tick(Object sender, EventArgs e)
  10. in System.Windows.Forms.Timer.OnTick(EventArgs e)
  11. in System.Windows.Forms.Timer.TimerNativeWindow.WndProc(Message& m)
  12. in System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  13.  
  14.  
  15. ************** Assembly caricati **************
  16. mscorlib
  17. Versione assembly: 4.0.0.0
  18. Versione Win32: 4.0.30319.1 (RTMRel.030319-0100)
  19. Base di codice: file:///C:/Windows/Microsoft.NET/Framework/v4.0.30319/mscorlib.dll
  20. ----------------------------------------
  21. WindowPonies
  22. Versione assembly: 1.0.0.0
  23. Versione Win32: 1.0.0.0
  24. Base di codice: file:///C:/Users/Andrea/Desktop/WindowPonies%20v1.5/WindowPonies%20v1.5/WindowPonies.exe
  25. ----------------------------------------
  26. Microsoft.VisualBasic
  27. Versione assembly: 10.0.0.0
  28. Versione Win32: 10.0.30319.1 built by: RTMRel
  29. Base di codice: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/Microsoft.VisualBasic/v4.0_10.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualBasic.dll
  30. ----------------------------------------
  31. System
  32. Versione assembly: 4.0.0.0
  33. Versione Win32: 4.0.30319.232 built by: RTMGDR
  34. Base di codice: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll
  35. ----------------------------------------
  36. System.Core
  37. Versione assembly: 4.0.0.0
  38. Versione Win32: 4.0.30319.1 built by: RTMRel
  39. Base di codice: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Core/v4.0_4.0.0.0__b77a5c561934e089/System.Core.dll
  40. ----------------------------------------
  41. System.Windows.Forms
  42. Versione assembly: 4.0.0.0
  43. Versione Win32: 4.0.30319.1 built by: RTMRel
  44. Base di codice: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms/v4.0_4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
  45. ----------------------------------------
  46. System.Drawing
  47. Versione assembly: 4.0.0.0
  48. Versione Win32: 4.0.30319.1 built by: RTMRel
  49. Base di codice: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
  50. ----------------------------------------
  51. System.Runtime.Remoting
  52. Versione assembly: 4.0.0.0
  53. Versione Win32: 4.0.30319.1 (RTMRel.030319-0100)
  54. Base di codice: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Runtime.Remoting/v4.0_4.0.0.0__b77a5c561934e089/System.Runtime.Remoting.dll
  55. ----------------------------------------
  56. Accessibility
  57. Versione assembly: 4.0.0.0
  58. Versione Win32: 4.0.30319.1 built by: RTMRel
  59. Base di codice: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/Accessibility/v4.0_4.0.0.0__b03f5f7f11d50a3a/Accessibility.dll
  60. ----------------------------------------
  61. mscorlib.resources
  62. Versione assembly: 4.0.0.0
  63. Versione Win32: 4.0.30319.1 (RTMRel.030319-0100)
  64. Base di codice: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/mscorlib.resources/v4.0_4.0.0.0_it_b77a5c561934e089/mscorlib.resources.dll
  65. ----------------------------------------
  66. System.Windows.Forms.resources
  67. Versione assembly: 4.0.0.0
  68. Versione Win32: 4.0.30319.1 built by: RTMRel
  69. Base di codice: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms.resources/v4.0_4.0.0.0_it_b77a5c561934e089/System.Windows.Forms.resources.dll
  70. ----------------------------------------
  71.  
  72. ************** Debug JIT **************
  73. Per abilitare il debug JIT, è necessario impostare il valore
  74. jitDebugging nella sezione system.windows.forms del file di configurazione
  75. dell'applicazione o del computer (machine.config).
  76. L'applicazione inoltre deve essere compilata con il debug
  77. abilitato.
  78.  
  79. Ad esempio:
  80.  
  81. <configuration>
  82. <system.windows.forms jitDebugging="true" />
  83. </configuration>
  84.  
  85. Quando il debug JIT è abilitato, tutte le eccezioni non gestite
  86. vengono inviate al debugger JIT registrato nel computer,
  87. anziché essere gestite da questa finestra di dialogo.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement