Problem signature:
Problem Event Name: CLR20r3
Problem Signature 01: tmnbill - copy.exe
Problem Signature 02: 1.0.0.0
Problem Signature 03: 54252a11
Problem Signature 04: TMNBill
Problem Signature 05: 1.0.0.0
Problem Signature 06: 54252a11
Problem Signature 07: 16
Problem Signature 08: ef
Problem Signature 09: System.InvalidOperationException
OS Version: 6.1.7601.2.1.0.256.4
Locale ID: 1054
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Try
'โค้ตของโปรแกรมเรา
Catch ex As Exception
MsgBox(ex.Message)
End Try
End Sub
General
.NET Runtime version 4.0.30319.1 - There was a failure initializing profiling API attach infrastructure. This process will not allow a profiler to attach. HRESULT: 0x80004005. Process ID (decimal): 6636. Message ID: [0x2509].
Detail
+ System
- Provider
[ Name] .NET Runtime
- EventID 1022
[ Qualifiers] 0
Level 2
Task 0
Keywords 0x80000000000000
- TimeCreated
[ SystemTime] 2014-10-01T06:27:21.000000000Z
EventRecordID 39867
Channel Application
Computer PHONG-TMN-PC
Security
- EventData
.NET Runtime version 4.0.30319.1 - There was a failure initializing profiling API attach infrastructure. This process will not allow a profiler to attach. HRESULT: 0x80004005. Process ID (decimal): 6636. Message ID: [0x2509].
แก้ที่ Form ที่ startup อ่ะครับ
ดูที่ code ของไฟล์ที่เป็นไฟล์ design --> ตั้งเป็น show all files ถึงจะมองเห็น
ถ้าเข้าถูกที่ คุณจะเจอ sub ชื่อว่า Dispose
Protected Overloads Overrides Sub Dispose
ลองเพิ่มคำสั่งด้านล่างไปที่ไฟล์นี้ แล้วลอง run ดูว่าโปรแกรมแจ้งอะไรไหม
Public Sub New()
AddHandler Application.ThreadException, AddressOf OnThreadException
'Added this
AddHandler AppDomain.CurrentDomain.UnhandledException, AddressOf UnhandledExceptionEventRaised
InitializeComponent()
End Sub
ต่อมาเพิ่ม Sub ด้านล่างเข้าไปด้วย
'Added this
Sub UnhandledExceptionEventRaised(ByVal sender As Object, ByVal e As UnhandledExceptionEventArgs)
If e.IsTerminating Then
Dim o As Object = e.ExceptionObject
MessageBox.Show(o.ToString) ' use EventLog instead
End If
End Sub
เขาได้คำตอบว่ามีไฟล์บางตัวหายไป
System.IO.FileNotFoundException: Could not load file or assembly 'Microsoft.VisualBasic.PowerPacks.Vs, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified.
File name: 'Microsoft.VisualBasic.PowerPacks.Vs, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'