以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  怎样把数据写入表中?  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=68053)

--  作者:54292550
--  发布时间:2015/5/8 15:29:00
--  怎样把数据写入表中?
串口收到一个数组,分割后后怎么写进一个表里的不同列?每接收一组数据就增加一行。
--  作者:大红袍
--  发布时间:2015/5/8 15:31:00
--  

 http://www.foxtable.com/help/topics/0421.htm

 


--  作者:Bin
--  发布时间:2015/5/8 15:31:00
--  
比如数组是  sz

for each s as string in sz
   dim r as row = tables("X").addnew
   r("第一列")=s
next