Microsoft.NET Framework的問題

請問這是怎麼一回事...

如需叫用 Just-In-Time (JIT) 偵錯的詳細資料,
請參閱本訊息結尾處 (而非這個對話方塊) 的資訊。

************** 例外狀況文字 **************
System.ComponentModel.Win32Exception (0x80004005): 存取被拒。
於 System.Diagnostics.Process.Kill()
於 Iexplore_Update.Form1.Form1_Load(Object sender, EventArgs e)
於 System.EventHandler.Invoke(Object sender, EventArgs e)
於 System.Windows.Forms.Form.OnLoad(EventArgs e)
於 System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
於 System.Windows.Forms.Control.CreateControl()
於 System.Windows.Forms.Control.WmShowWindow(Message& m)
於 System.Windows.Forms.Control.WndProc(Message& m)
於 System.Windows.Forms.Form.WndProc(Message& m)
於 System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)


************** 已載入的組件 **************
mscorlib
組件版本: 4.0.0.0
Win32 版本: 4.0.30319.34209 built by: FX452RTMGDR
程式碼基底: file:///C:/Windows/Microsoft.NET/Framework64/v4.0.30319/mscorlib.dll
----------------------------------------
Iexplore Update
組件版本: 1.0.0.0
Win32 版本: 1.0.0.0
程式碼基底: file:///C:/Windows/Iexplore%20Update.exe
----------------------------------------
Microsoft.VisualBasic
組件版本: 10.0.0.0
Win32 版本: 12.0.51209.34209 built by: FX452RTMGDR
程式碼基底: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/Microsoft.VisualBasic/v4.0_10.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualBasic.dll
----------------------------------------
System
組件版本: 4.0.0.0
Win32 版本: 4.0.30319.34209 built by: FX452RTMGDR
程式碼基底: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll
----------------------------------------
System.Core
組件版本: 4.0.0.0
Win32 版本: 4.0.30319.34209 built by: FX452RTMGDR
程式碼基底: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Core/v4.0_4.0.0.0__b77a5c561934e089/System.Core.dll
----------------------------------------
System.Windows.Forms
組件版本: 4.0.0.0
Win32 版本: 4.0.30319.34209 built by: FX452RTMGDR
程式碼基底: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms/v4.0_4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
----------------------------------------
System.Drawing
組件版本: 4.0.0.0
Win32 版本: 4.0.30319.34209 built by: FX452RTMGDR
程式碼基底: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
----------------------------------------
System.Runtime.Remoting
組件版本: 4.0.0.0
Win32 版本: 4.0.30319.34209 built by: FX452RTMGDR
程式碼基底: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Runtime.Remoting/v4.0_4.0.0.0__b77a5c561934e089/System.Runtime.Remoting.dll
----------------------------------------
System.Configuration
組件版本: 4.0.0.0
Win32 版本: 4.0.30319.34209 built by: FX452RTMGDR
程式碼基底: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Configuration/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
----------------------------------------
System.Xml
組件版本: 4.0.0.0
Win32 版本: 4.0.30319.34209 built by: FX452RTMGDR
程式碼基底: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
----------------------------------------
System.Windows.Forms.resources
組件版本: 4.0.0.0
Win32 版本: 4.0.30319.1 built by: RTMRel
程式碼基底: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms.resources/v4.0_4.0.0.0_zh-Hant_b77a5c561934e089/System.Windows.Forms.resources.dll
----------------------------------------
mscorlib.resources
組件版本: 4.0.0.0
Win32 版本: 4.0.30319.1 (RTMRel.030319-0100)
程式碼基底: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/mscorlib.resources/v4.0_4.0.0.0_zh-Hant_b77a5c561934e089/mscorlib.resources.dll
----------------------------------------

************** JIT 偵錯 **************
若要啟用 Just-In-Time (JIT) 偵錯功能,則必須在
此應用程式或電腦的 .config 檔案中,設定
system.windows.forms 區段內的 jitDebugging 值。
且該應用程式也必須在啟用偵錯的狀態下進行
編譯。

例如:

<configuration>
<system.windows.forms jitDebugging="true" />
</configuration>

當 JIT 偵錯功能啟用後,會將所有未處理的例外
狀況傳送給電腦上已註冊的 JIT 偵錯工具進行處
理,而不是使用這個對話方塊來處理。

2016-06-13 19:45 發佈
文章關鍵字 問題
就程式錯誤

就程式開發人員沒有處理好罷了!請程式設計師更正程式吧!

z75964 wrote:
System.ComponentModel.Win32Exception (0x80004005): 存取被拒。


出現存取被拒,基本就是權限不足,或者有其它原因

然後設計師沒有攔截錯誤,.NET Framework就直接把整個錯誤訊息拋出來
請問這樣有辦法解決嗎QQ....

每次開機就跳出來好討厭...
內文搜尋
X
評分
評分
複製連結
Mobile01提醒您
您目前瀏覽的是行動版網頁
是否切換到電腦版網頁呢?