以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 求代码 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=11032) |
-- 作者:zhaotao -- 发布时间:2011/7/5 10:14:00 -- 求代码 判断最末条是否为空的代码应该怎样写? |
-- 作者:狐狸爸爸 -- 发布时间:2011/7/5 10:18:00 -- With Tables("某表") Dim r as row = .rows(.count -1) If r.Isnull("某列") then messagebox.show("空") End If End With |
-- 作者:zhaotao -- 发布时间:2011/7/5 10:20:00 -- 谢了! |