Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
字符串看起来像:
teststring = "Sunday,Monday"
当我这样写时,在组合框的 DefaultSelectedItems 中,它可以工作。
如何使用上述测试字符串动态制作这种格式(即使测试字符串更改为其他内容)?
下面的代码对我有用:
ClearCollect(collectOutput,RenameColumns(Split(Teststring,","),"Result", "Value"))
collectOutput.Value要访问我刚刚在 DefaultSelectedItems 属性中编写的收集列表
collectOutput.Value