显示组合框的列表部分
The following example uses the DropDown method to display the list in a ComboBox. 用户可以通过单击 CommandButton 来显示 ComboBox 的列表。
若要使用本示例,请将此示例代码复制到窗体的"脚本编辑器"中。 若要运行本代码,需要打开该窗体,以便激活 Open 事件。 确保该窗体包含:
一个名为"ComboBox1"的 ComboBox 。
一个名为"CommandButton1"的 CommandButton 。
Dim ComboBox1
Sub CommandButton1_Click()
ComboBox1.DropDown
End Sub
Sub Item_Open()
Set ComboBox1 = Item.GetInspector.ModifiedFormPages.Item("P.2").Controls("ComboBox1")
ComboBox1.AddItem "Turkey"
ComboBox1.AddItem "Chicken"
ComboBox1.AddItem "Duck"
ComboBox1.AddItem "Goose"
ComboBox1.AddItem "Grouse"
End Sub
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。