以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  怎样把.GetComboListString取得的值填到表的某一列  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=89157)

--  作者:大红袍
--  发布时间:2016/8/16 15:17:00
--  

 直接用filler,就很简单

 

http://www.foxtable.com/webhelp/scr/0680.htm

 


--  作者:大红袍
--  发布时间:2016/8/16 15:55:00
--  
For Each s As String In DataTables("客户").SQLGetValues("客户名称")
    Dim ndr As DataRow = DataTables("表A").AddNew
    ndr("客户名称") = s
Next