以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 选择一个姓名其他自动批量提交 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=129408) |
-- 作者:有点甜 -- 发布时间:2018/12/27 22:35:00 -- for each r as row in e.form.controls("Table1").table.rows r("某列") = "aabbcc" next |
-- 作者:有点甜 -- 发布时间:2018/12/27 22:41:00 -- 改成
r("需审核人") = e.form.controls("textbox1").Text |
-- 作者:有点甜 -- 发布时间:2018/12/28 10:36:00 -- For Each r As Row In e.form.controls("采购申请明细").Table.rows
If r.checked = true then
r("需审核人") = "aabbcc"
End If
Next
|