VBA:如何使Variant为空?

时间:2017-12-22 09:59:25

标签: vba variant

我有以下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

我得到的错误是:

enter image description here

1 个答案:

答案 0 :(得分:4)

对于变体数组,您可以使用erase命令清除它们。

Erase comboitems

这是一个方便的参考指南,用于处理vba中的数组:

https://excelmacromastery.com/excel-vba-array/