要启用实时(JIT)调试?这是哪错了

huashuidianxin2009 2012-04-20 09:03:31
有关调用实时(JIT)调试而不是此对话框的详细信息,
请参见此消息的结尾。

************** 异常文本 **************
System.NullReferenceException: 未将对象引用设置到对象的实例。
在 WindowsFormsApplication2.Form2.GetConnection() 位置 D:\jiaowu\vs\WindowsFormsApplication2\WindowsFormsApplication2\Form2.cs:行号 40
在 WindowsFormsApplication2.Form2.GetTable() 位置 D:\jiaowu\vs\WindowsFormsApplication2\WindowsFormsApplication2\Form2.cs:行号 70
在 WindowsFormsApplication2.Form2.button1_Click(Object sender, EventArgs e) 位置 D:\jiaowu\vs\WindowsFormsApplication2\WindowsFormsApplication2\Form2.cs:行号 88
在 System.Windows.Forms.Control.OnClick(EventArgs e)
在 System.Windows.Forms.Button.OnClick(EventArgs e)
在 System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
在 System.Windows.Forms.Control.WndProc(Message& m)
在 System.Windows.Forms.ButtonBase.WndProc(Message& m)
在 System.Windows.Forms.Button.WndProc(Message& m)
在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
在 System.Windows.Forms.Control.ControlNativeWindow.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.261 (RTMGDR.030319-2600)
基本代码: file:///C:/Windows/Microsoft.NET/Framework/v4.0.30319/mscorlib.dll
----------------------------------------
WindowsFormsApplication2
程序集版本: 1.0.0.0
Win32 版本: 1.0.0.0
基本代码: file:///D:/jiaowu/vs/WindowsFormsApplication2/WindowsFormsApplication2/bin/Debug/WindowsFormsApplication2.exe
----------------------------------------
System.Windows.Forms
程序集版本: 4.0.0.0
Win32 版本: 4.0.30319.235 built by: RTMGDR
基本代码: 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.276 built by: RTMGDR
基本代码: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
----------------------------------------
System
程序集版本: 4.0.0.0
Win32 版本: 4.0.30319.261 built by: RTMGDR
基本代码: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll
----------------------------------------
System.Configuration
程序集版本: 4.0.0.0
Win32 版本: 4.0.30319.1 (RTMRel.030319-0100)
基本代码: 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.233 built by: RTMGDR
基本代码: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
----------------------------------------
System.Data
程序集版本: 4.0.0.0
Win32 版本: 4.0.30319.237 (RTMGDR.030319-2300)
基本代码: file:///C:/Windows/Microsoft.Net/assembly/GAC_32/System.Data/v4.0_4.0.0.0__b77a5c561934e089/System.Data.dll
----------------------------------------
System.Core
程序集版本: 4.0.0.0
Win32 版本: 4.0.30319.233 built by: RTMGDR
基本代码: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Core/v4.0_4.0.0.0__b77a5c561934e089/System.Core.dll
----------------------------------------
mscorlib.resources
程序集版本: 4.0.0.0
Win32 版本: 4.0.30319.235 (RTMGDR.030319-2300)
基本代码: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/mscorlib.resources/v4.0_4.0.0.0_zh-Hans_b77a5c561934e089/mscorlib.resources.dll
----------------------------------------
System.Windows.Forms.resources
程序集版本: 4.0.0.0
Win32 版本: 4.0.30319.235 built by: RTMGDR
基本代码: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms.resources/v4.0_4.0.0.0_zh-Hans_b77a5c561934e089/System.Windows.Forms.resources.dll
----------------------------------------

************** JIT 调试 **************
要启用实时(JIT)调试,
该应用程序或计算机的 .config 文件(machine.config)的 system.windows.forms 节中必须设置
jitDebugging 值。
编译应用程序时还必须启用
调试。

例如:

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

启用 JIT 调试后,任何未经处理的异常
都将被发送到在此计算机上注册的 JIT 调试器,
而不是由此对话框处理。
...全文
7169 11 打赏 收藏 转发到动态 举报
写回复
用AI写文章
11 条回复
切换为时间正序
请发表友善的回复…
发表回复
men52676521 2014-01-21
  • 打赏
  • 举报
回复
跟一下断点吧!也许是某个方法没有实现。我出现过
huashuidianxin2009 2012-04-20
  • 打赏
  • 举报
回复
怎么初始化?
IT-Style 2012-04-20
  • 打赏
  • 举报
回复
[Quote=引用 6 楼 的回复:]

如果是空那该怎么办?本人刚学,多有不懂。呵呵
[/Quote]
是不能为空的,必须初始化一个值.
huashuidianxin2009 2012-04-20
  • 打赏
  • 举报
回复
如果是空那该怎么办?本人刚学,多有不懂。呵呵
宝_爸 2012-04-20
  • 打赏
  • 举报
回复
八成 ConfigurationManager.ConnectionStrings["MyTestConnectionString"] 是null,设置个断点看看吧。
huashuidianxin2009 2012-04-20
  • 打赏
  • 举报
回复
public SqlConnection GetConnection()
{
string connText = ConfigurationManager.ConnectionStrings["MyTestConnectionString"].ConnectionString;
SqlConnection sqlconn = new SqlConnection(connText);
return sqlconn;
}
这个有错吗
chen_ya_ping 2012-04-20
  • 打赏
  • 举报
回复
是你的引用变量为null,导致的。
宝_爸 2012-04-20
  • 打赏
  • 举报
回复
WindowsFormsApplication2.Form2.GetConnection()函数里使用空引用了 -- System.NullReferenceException: 未将对象引用设置到对象的实例。

在D:\jiaowu\vs\WindowsFormsApplication2\WindowsFormsApplication2\Form2.cs:第 40行的位置找一找。

最好能设置个断点跟踪一下。
  • 打赏
  • 举报
回复
System.NullReferenceException: 未将对象引用设置到对象的实例。

对象没有实例化就用了 就是说没有 new

D:\jiaowu\vs\WindowsFormsApplication2\WindowsFormsApplication2\Form2.cs:行号 40
这不都告诉你位置了吗/?
  • 打赏
  • 举报
回复
Sorry ,这个意思就是说 ConfigurationManager.ConnectionStrings["MyTestConnectionString"] 这里面的MyTestConnectionString内容必须有内容
  • 打赏
  • 举报
回复
ConfigurationManager.ConnectionStrings["MyTestConnectionString"] ="xxxxxxx"

110,566

社区成员

发帖
与我相关
我的任务
社区描述
.NET技术 C#
社区管理员
  • C#
  • Web++
  • by_封爱
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告

让您成为最强悍的C#开发者

试试用AI创作助手写篇文章吧