以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 求按键代码 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=48114) |
||||
-- 作者:aygp -- 发布时间:2014/3/23 15:16:00 -- 求按键代码 请问该项目按键代码如何写?
|
||||
-- 作者:lsy -- 发布时间:2014/3/23 15:30:00 -- For Each r As Row In Tables("表A").Rows If r.IsNull("名次") = False Then Dim dr As DataRow = DataTables("表B").Find("第一列 = \'" & r("名次") & "\'") If dr IsNot Nothing Then r("得分") = IIF(dr.IsNull("第二列"),Nothing,dr("第二列")) End If End If Next |
||||
-- 作者:aygp -- 发布时间:2014/3/23 15:34:00 -- 谢谢lsy老师! |