gpt4 book ai didi

vba - 使用VBA设置组合框的值

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

我有一个组合框,其中包含指定范围内的 200 多个值,用户可以选择选择这 200 多个值中的任何一个自由键入任意值将其他值放入组合框中。这工作得很好。

我的问题是,我无法使用 VBA 代码中的字符串变量中指定的值填充同一组合框。我想做以下事情:

Sub FillInComboBox()
Dim strExample as String

strExample = "Random Text"

Worksheets("Sheet1").Shapes("ComboBox1").Value = strExample

End Sub

我收到“运行时错误 '438:对象不支持此属性或方法”。我还尝试了上面代码的很多变体,但我在谷歌上搜索了两个小时但没有成功,所以我现在求助于你,作为我让这个工作成功的最后希望。

最佳答案

使用以下子程序。

    Sub FillInComboBox()
Dim strExample As String
strExample = "Random Text"

With Sheet1.ComboBox1
.AddItem strExample
.AddItem "Second Item"
.AddItem "Third Item"
End With
End Sub

关于vba - 使用VBA设置组合框的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34747583/

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