gpt4 book ai didi

vba - 从组合框中删除所有项目?

转载 作者:行者123 更新时间:2023-12-03 13:38:39 24 4
gpt4 key购买 nike

如何以编程方式从VBA的组合框中删除所有项目?

最佳答案

不幸的是,您需要单独删除每一个:

       For i = 1 To ListBox1.ListCount

'Remove an item from the ListBox using ListBox1.RemoveItem
Next i

更新-我不知道为什么我的答案没有包含完整的解决方案:
For i = ListBox1.ListCount - 1 to 0 Step - 1 
ListBox1.RemoveItem i
Next i

关于vba - 从组合框中删除所有项目?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2998161/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com