以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 怎样向指定表的新增行写入数值 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=4310) |
-- 作者:exonjee -- 发布时间:2009/9/11 13:42:00 -- 怎样向指定表的新增行写入数值 1、在B表的窗体按钮中要求检查A表中D列是否有某一数值w,如果有应向A表的指定列的指定行写入一个数值w, |
-- 作者:czy -- 发布时间:2009/9/11 13:53:00 -- \'判断A表D列没有指定值 Dim dr As DataRow Dim r As Row = Tables("B表").Current dr = DataTables("A表").AddNew() dr("D列") = r("D列") |
-- 作者:exonjee -- 发布时间:2009/9/11 15:47:00 -- OK,谢谢! |