以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.net/bbs/index.asp)
--  专家坐堂  (http://foxtable.net/bbs/list.asp?boardid=2)
----  怎么用combox来获取外部数据源的所有表名  (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=66113)

--  作者:jhq1989
--  发布时间:2015/3/30 15:34:00
--  怎么用combox来获取外部数据源的所有表名
哪个方法呢
--  作者:Bin
--  发布时间:2015/3/30 15:36:00
--  
http://www.foxtable.com/help/topics/1943.htm

Dim lst As List(Of String)
lst = Connections("nwnd").GetTableNames
dim str as string
For Each nm As String In lst
    str = str & "|" & nm

Next

e.form.controls("combobox1").combolist=str

--  作者:有点甜
--  发布时间:2015/3/30 15:36:00
--  
 Dim str As String = ""
For Each s As String In Connections("test").GetTableNames
    str &= s & "|"
Next
msgbox(str.trim("|"))