以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 请问,如何快速获取某表的列名,成为列表框中的选项? (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=68813) |
-- 作者:Bin -- 发布时间:2015/5/25 16:47:00 -- dim s as string for each c as col in tables("X").cols s= s & "|" & c.name next .combolist=s.trim("|")
|