以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- [求助]如何攻取SQL数据中所有的数据表,并加载在下拉菜单中 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=125797) |
-- 作者:2900819580 -- 发布时间:2018/10/7 14:08:00 -- [求助]如何攻取SQL数据中所有的数据表,并加载在下拉菜单中 如何攻取SQL数据中所有的数据表,并加载在下拉ComboBox1上 |
-- 作者:有点蓝 -- 发布时间:2018/10/7 14:31:00 -- 参考:http://www.foxtable.com/webhelp/scr/1943.htm Dim lst As List(Of String) lst = Connections("nwnd").GetTableNames Dim cmb As WinForm.ComboBox cmb = Forms("窗口1").Controls("ComboBox1") cmb.ComboList = String.Join("|",lst.ToArray) |