以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  [求助] 如何列出 多文件型 字段的所有文件名?  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=39548)

--  作者:有点甜
--  发布时间:2013/8/26 22:38:00
--  
 参考代码

Dim str As String = CurrentTable(0,1)
For Each s As String In str.Split(chr(13))
    msgbox("asdf" & s.Trim(chr(10)) & "sd")
Next