以文本方式查看主题

-  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=169192)

--  作者:rongping
--  发布时间:2021/6/6 15:25:00
--  关于多值字段

请教各位老师,多值字段列的内容怎么输入进去?有没有限制?还有多值字段怎样遍历每一个值?


--  作者:有点蓝
--  发布时间:2021/6/6 20:40:00
--  
多值字段列一般用作选择,手工输入,可能会输入不在列表的内容。

遍历,比如
dim s as string ="A,B,D,f"
for each s1 as string in s.split(",")
msgbox(s1)
next