使用逗号分隔的字符串预填充 ComboBox
Prepopulate the ComboBox using comma-seperated String
字符串看起来像:
teststring = "Sunday,Monday"
在组合框的 DefaultSelectedItems 中,当我这样写时,它起作用了。
如何使用上面的测试字符串动态生成这种格式(即使测试字符串更改为其他格式)??
下面的代码对我有用:
ClearCollect(collectOutput,RenameColumns(Split(Teststring,","),"Result", "Value"))
要访问我刚刚在 DefaultSelectedItems 属性
中写入 collectOutput.Value
的收集列表
字符串看起来像:
teststring = "Sunday,Monday"
在组合框的 DefaultSelectedItems 中,当我这样写时,它起作用了。
如何使用上面的测试字符串动态生成这种格式(即使测试字符串更改为其他格式)??
下面的代码对我有用:
ClearCollect(collectOutput,RenameColumns(Split(Teststring,","),"Result", "Value"))
要访问我刚刚在 DefaultSelectedItems 属性
中写入collectOutput.Value
的收集列表