以文本方式查看主题 - Foxtable(狐表) (http://www.foxtable.com/bbs/index.asp) -- 专家坐堂 (http://www.foxtable.com/bbs/list.asp?boardid=2) ---- 提取当前行的所有列的内容,并且组合转换成字符串,要怎么写? (http://www.foxtable.com/bbs/dispbbs.asp?boardid=2&id=105520) |
-- 作者:晕了快扶我 -- 发布时间:2017/8/21 16:21:00 -- 提取当前行的所有列的内容,并且组合转换成字符串,要怎么写? 如题 |
-- 作者:有点甜 -- 发布时间:2017/8/21 16:37:00 -- dim cr as row = tables("表A").current Dim str As String = "" For Each c As Col In cr.Table.cols str = str & cr(c.name) & "|" Next msgbox(str) |