Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 4.35 KB | None | 0 0
  1. See the end of this message for details on invoking
  2. just-in-time (JIT) debugging instead of this dialog box.
  3.  
  4. ************** Exception Text **************
  5. System.InvalidOperationException: An error occurred creating the form. See Exception.InnerException for details.  The error is: Could not load file or assembly 'Microsoft.VisualBasic.PowerPacks.Vs, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified. ---> System.IO.FileNotFoundException: Could not load file or assembly 'Microsoft.VisualBasic.PowerPacks.Vs, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified.
  6.    at WindowsApplication1.Form2.InitializeComponent()
  7.    at WindowsApplication1.Form2..ctor()
  8.    --- End of inner exception stack trace ---
  9.    at WindowsApplication1.My.MyProject.MyForms.Create__Instance__[T](T Instance)
  10.    at WindowsApplication1.My.MyProject.MyForms.get_Form2()
  11.    at WindowsApplication1.Form1.Button1_Click(Object sender, EventArgs e)
  12.    at System.Windows.Forms.Control.OnClick(EventArgs e)
  13.    at System.Windows.Forms.Button.OnClick(EventArgs e)
  14.    at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
  15.    at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  16.    at System.Windows.Forms.Control.WndProc(Message& m)
  17.    at System.Windows.Forms.ButtonBase.WndProc(Message& m)
  18.    at System.Windows.Forms.Button.WndProc(Message& m)
  19.    at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  20.    at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  21.    at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  22.  
  23.  
  24. ************** Loaded Assemblies **************
  25. mscorlib
  26.     Assembly Version: 4.0.0.0
  27.     Win32 Version: 4.0.30319.1 (RTMRel.030319-0100)
  28.     CodeBase: file:///C:/WINDOWS/Microsoft.NET/Framework/v4.0.30319/mscorlib.dll
  29. ----------------------------------------
  30. Internet cafe
  31.     Assembly Version: 1.0.0.0
  32.     Win32 Version: 1.0.0.0
  33.     CodeBase: file:///G:/Internet%20cafe.exe
  34. ----------------------------------------
  35. Microsoft.VisualBasic
  36.     Assembly Version: 10.0.0.0
  37.     Win32 Version: 10.0.30319.1 built by: RTMRel
  38.     CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/Microsoft.VisualBasic/v4.0_10.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualBasic.dll
  39. ----------------------------------------
  40. System
  41.     Assembly Version: 4.0.0.0
  42.     Win32 Version: 4.0.30319.1 built by: RTMRel
  43.     CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll
  44. ----------------------------------------
  45. System.Core
  46.     Assembly Version: 4.0.0.0
  47.     Win32 Version: 4.0.30319.1 built by: RTMRel
  48.     CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Core/v4.0_4.0.0.0__b77a5c561934e089/System.Core.dll
  49. ----------------------------------------
  50. System.Windows.Forms
  51.     Assembly Version: 4.0.0.0
  52.     Win32 Version: 4.0.30319.1 built by: RTMRel
  53.     CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms/v4.0_4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
  54. ----------------------------------------
  55. System.Drawing
  56.     Assembly Version: 4.0.0.0
  57.     Win32 Version: 4.0.30319.1 built by: RTMRel
  58.     CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
  59. ----------------------------------------
  60. System.Runtime.Remoting
  61.     Assembly Version: 4.0.0.0
  62.     Win32 Version: 4.0.30319.1 (RTMRel.030319-0100)
  63.     CodeBase: file:///C:/WINDOWS/Microsoft.Net/assembly/GAC_MSIL/System.Runtime.Remoting/v4.0_4.0.0.0__b77a5c561934e089/System.Runtime.Remoting.dll
  64. ----------------------------------------
  65.  
  66. ************** JIT Debugging **************
  67. To enable just-in-time (JIT) debugging, the .config file for this
  68. application or computer (machine.config) must have the
  69. jitDebugging value set in the system.windows.forms section.
  70. The application must also be compiled with debugging
  71. enabled.
  72.  
  73. For example:
  74.  
  75. <configuration>
  76.     <system.windows.forms jitDebugging="true" />
  77. </configuration>
  78.  
  79. When JIT debugging is enabled, any unhandled exception
  80. will be sent to the JIT debugger registered on the computer
  81. rather than be handled by this dialog box.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement