Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.40 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.UnauthorizedAccessException: Accesso al percorso 'C:\Program Files (x86)\PSDPreview' negato.
  6. in System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
  7. in System.IO.Directory.InternalCreateDirectory(String fullPath, String path, DirectorySecurity dirSecurity)
  8. in System.IO.Directory.CreateDirectory(String path, DirectorySecurity directorySecurity)
  9. in WindowsPsdEnabler.Form1.btnEnable_Click(Object sender, EventArgs e)
  10. in System.Windows.Forms.Control.OnClick(EventArgs e)
  11. in System.Windows.Forms.Button.OnClick(EventArgs e)
  12. in System.Windows.Forms.Button.WndProc(Message& m)
  13. in System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  14. in System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  15. in System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  16.  
  17.  
  18. ************** Assembly caricati **************
  19. mscorlib
  20. Versione assembly: 2.0.0.0
  21. Versione Win32: 2.0.50727.4952 (win7RTMGDR.050727-4900)
  22. Base di codice: file:///C:/Windows/Microsoft.NET/Framework/v2.0.50727/mscorlib.dll
  23. ----------------------------------------
  24. PSDPreview
  25. Versione assembly: 0.1.0.0
  26. Versione Win32: 0.1.0.0
  27. Base di codice: file:///D:/temp/Temp1_psdpreview.zip/PSDPreview.exe
  28. ----------------------------------------
  29. System.Windows.Forms
  30. Versione assembly: 2.0.0.0
  31. Versione Win32: 2.0.50727.4927 (NetFXspW7.050727-4900)
  32. Base di codice: file:///C:/Windows/assembly/GAC_MSIL/System.Windows.Forms/2.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
  33. ----------------------------------------
  34. System
  35. Versione assembly: 2.0.0.0
  36. Versione Win32: 2.0.50727.4927 (NetFXspW7.050727-4900)
  37. Base di codice: file:///C:/Windows/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
  38. ----------------------------------------
  39. System.Drawing
  40. Versione assembly: 2.0.0.0
  41. Versione Win32: 2.0.50727.4927 (NetFXspW7.050727-4900)
  42. Base di codice: file:///C:/Windows/assembly/GAC_MSIL/System.Drawing/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
  43. ----------------------------------------
  44. mscorlib.resources
  45. Versione assembly: 2.0.0.0
  46. Versione Win32: 2.0.50727.4952 (win7RTMGDR.050727-4900)
  47. Base di codice: file:///C:/Windows/Microsoft.NET/Framework/v2.0.50727/mscorlib.dll
  48. ----------------------------------------
  49. System.Windows.Forms.resources
  50. Versione assembly: 2.0.0.0
  51. Versione Win32: 2.0.50727.4927 (NetFXspW7.050727-4900)
  52. Base di codice: file:///C:/Windows/assembly/GAC_MSIL/System.Windows.Forms.resources/2.0.0.0_it_b77a5c561934e089/System.Windows.Forms.resources.dll
  53. ----------------------------------------
  54.  
  55. ************** Debug JIT **************
  56. Per attivare il debug JIT, è necessario impostare il valore
  57. jitDebugging nella sezione system.windows.forms del file di configurazione
  58. dell'applicazione o del computer (machine.config).
  59. L'applicazione inoltre deve essere compilata con il debug
  60. attivato.
  61.  
  62. Ad esempio:
  63.  
  64. <configuration>
  65. <system.windows.forms jitDebugging="true" />
  66. </configuration>
  67.  
  68. Quando il debug JIT è attivato, tutte le eccezioni non gestite
  69. vengono inviate al debugger JIT registrato nel computer,
  70. anziché essere gestite da questa finestra di dialogo.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement