excel VBA 组合框 取值

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了excel VBA 组合框 取值相关的知识,希望对你有一定的参考价值。

请教在excel中想将组合框中的值取出赋予变量如何编写代码?
如组合框名:下拉框1,变量名:序号

参考技术A 序号=下拉框1 参考技术B excel中的下拉框有三种,一个是excel窗体工具栏中的,一个是excel控件工具栏中的,还有一个是VBA界面中的。
这几个使用都不方便,所以我不使用它们,不如直接引用单元格方便,或者使用“数据-有效性”中的序列。

下面这个是excel VBA中的帮助文件,也许对你有用。
ListBox 控件、AddItem 和 RemoveItem 方法以及 ListIndex、ListCount 属性示例

下例用 AddItem、RemoveItem 以及 ListIndex 和 ListCount 属性来添加和删除列表框的内容。

若要使用该示例,请将示例代码复制到某窗体的声明变量部分。请确保该窗体包含:

名为 ListBox1 的列表框。

名为 CommandButton1 和 CommandButton2 的两个命令按钮控件。

Dim EntryCount As Single

Private Sub CommandButton1_Click()
    EntryCount = EntryCount + 1
    ListBox1.AddItem (EntryCount & " - Selection")
End Sub

Private Sub CommandButton2_Click()
    '确认列表框包含列表项
    If ListBox1.ListCount >= 1 Then
        '如果没有选中的内容,用上一次的列表项。
        If ListBox1.ListIndex = -1 Then
            ListBox1.ListIndex = _
                    ListBox1.ListCount - 1
        End If
        ListBox1.RemoveItem (ListBox1.ListIndex)
    End If
End Sub

Private Sub UserForm_Initialize()
    EntryCount = 0
    CommandButton1.Caption = "Add Item"
    CommandButton2.Caption = "Remove Item"
End Sub本回答被提问者采纳

以上是关于excel VBA 组合框 取值的主要内容,如果未能解决你的问题,请参考以下文章

Excel VBA 组合框禁用问题

从组合框中选择下一个项目,然后单击 Excel VBA 按钮

VBA-Excel如何清除组合框项目

Excel VBA检查各种组合框中是不是存在值,然后添加相应的文本框值

在 Excel VBA 中动态调整组合框的宽度

单击保存按钮后如何在用户窗体中添加依赖于另一个组合框的excel vba组合框而不影响清除数据功能