以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  [求助]小白求助  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=90290)

--  作者:陈嘉淳
--  发布时间:2016/9/9 9:57:00
--  [求助]小白求助
怎么用代码实现将一个集合的做成表格的某一列列表项目,就是做成下来列表
--  作者:有点蓝
--  发布时间:2016/9/9 10:12:00
--  
Dim lst As new List(of String)
lst.Add("aaa")
lst.Add("bbb")
lst.Add("ccc")
Dim cbo As WinForm.ComboBox = e.Form.Controls("ComboBox1")
cbo.ComboList = String.Join("|",lst.ToArray)

--  作者:有点蓝
--  发布时间:2016/9/9 10:13:00
--  
Dim lst As new List(of String)
lst.Add("aaa")
lst.Add("bbb")
lst.Add("ccc")

Tables("表A").Cols("第一列").ComboList = String.Join("|",lst.ToArray)

--  作者:陈嘉淳
--  发布时间:2016/9/9 19:16:00
--  
大神用狐表多久了