以文本方式查看主题

-  Foxtable(狐表)  (http://www.foxtable.com/bbs/index.asp)
--  专家坐堂  (http://www.foxtable.com/bbs/list.asp?boardid=2)
----  怎么返回指定单元格的数据  (http://www.foxtable.com/bbs/dispbbs.asp?boardid=2&id=146828)

--  作者:呜哈哈
--  发布时间:2020/3/3 14:28:00
--  怎么返回指定单元格的数据

For Each dr As DataRow In DataTables("表名").DataRows
    Output.Show( dr("列名")
Next
这样只能打印出来,怎么把dr 中的值拿出来存到string类型变量中




--  作者:有点蓝
--  发布时间:2020/3/3 14:35:00
--  
dim s as string = DataTables("表名").GetComboListString("列名")