Rss & SiteMap

Foxtable(狐表) http://www.foxtable.com

新一代数据库软件,完美融合Access、Foxpro、Excel、vb.net之优势,人人都能掌握的快速软件开发工具!
共2 条记录, 每页显示 10 条, 页签: [1]
[浏览完整版]

标题:未将对象引用设置到对象的实例。

1楼
weibu 发表于:2024/10/11 19:07:00
Dim trv1 As WinForm.TreeView = e.Form.Controls("TreeView1")
Dim trv2 As WinForm.TreeView = e.Form.Controls("TreeView2")
Dim pn1 As WinForm.TreeNode = trv1.SelectedNode
Dim pn2 As WinForm.TreeNode = trv2.SelectedNode
Dim p1 As DataRow = pn1.DataRow
Dim p2 As DataRow = pn2.DataRow
If pn1 Is Nothing Then
MessageBox.show("请选择所属部门!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Warning)  不选择Pn1时,我想让提示窗口提示MessageBox;但实际提示未将对象引用设置到对象的实例。
Else
    If pn2 Is Nothing Then
        MessageBox.show("请选择所属岗位!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Warning) '不选择Pn2时,我想让提示窗口提示MessageBox;但实际提示未将对象引用设置到对象的实例。
        Else
         Dim r As Row = Tables("UserInfo").AddNew()
         r("DepartmentName") = p1("DepartmentName")
         r("DepartmentId") = p1("DepartmentId")
         r("PositionName") = p2("PositionName")
         r("PositionId") = p2("PositionId")
         End If 
End If

2楼
有点蓝 发表于:2024/10/12 8:41:00
Dim p1 As DataRow = pn1.DataRow这里就出错了,如果pn1是空值,使用空对象的属性肯定会出错。所以应该在使用这个对象任何属性之前判断
共2 条记录, 每页显示 10 条, 页签: [1]

Copyright © 2000 - 2018 foxtable.com Tel: 4000-810-820 粤ICP备11091905号

Powered By Dvbbs Version 8.3.0
Processed in .02734 s, 2 queries.