我有以下Variant:
Dim comboitems() As Variant
我将所有代码用作包含ComboBox
控件值的数组。
在代码的某个点,我需要清除/清空/ null comboitems()
。我能怎么做?我没有成功地尝试了以下所有选项。
comboitems = ""
comboitems = Null
comboitems = Nothing
Set comboitems = ""
Set comboitems = Null
Set comboitems = Nothing
comboitems() = ""
comboitems() = Null
comboitems() = Nothing
Set comboitems() = ""
Set comboitems() = Null
Set comboitems() = Nothing
我得到的错误是:
答案 0 :(得分:4)
对于变体数组,您可以使用erase命令清除它们。
Erase comboitems
这是一个方便的参考指南,用于处理vba中的数组: