vba将listbox转为数组
时间: 2023-11-12 09:05:55 浏览: 135
list转数组.txt
可以使用以下代码将 ListBox 转换为数组:
```
Dim arr() As Variant
Dim i As Long
ReDim arr(ListBox1.ListCount - 1)
For i = 0 To ListBox1.ListCount - 1
arr(i) = ListBox1.List(i)
Next i
```
其中,`ListBox1` 是你要转换的 ListBox 的名称。转换后的数组 `arr` 中的元素与 ListBox 中的元素一一对应。
阅读全文