以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- GetParentRow 不能这样用么? (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=52802) |
-- 作者:老头 -- 发布时间:2014/6/23 15:10:00 -- GetParentRow 不能这样用么? BeforeSaveDataRow 表事件里,目前这样引用报错
Dim pr As DataRow = e.DataRow.GetParentRow("父表名")
kkkk = pr("列名")
|
-- 作者:Bin -- 发布时间:2014/6/23 15:12:00 -- 报什么错? 你KKKK声明了吗? |
-- 作者:老头 -- 发布时间:2014/6/23 15:15:00 -- 定义了的。
报这样的错。
.NET Framework 版本:2.0.50727.4984 |
-- 作者:老头 -- 发布时间:2014/6/23 15:17:00 -- 好像找到问题所在了 。。
|
-- 作者:有点甜 -- 发布时间:2014/6/23 15:19:00 -- 以下是引用老头在2014-6-23 15:17:00的发言:
好像找到问题所在了 。。
Dim pr As DataRow = e.DataRow.GetParentRow("父表名") If pr IsNot Nothing Then
End If |