2个回答
展开全部
Private Sub UserForm_Initialize()
Dim i As Integer
For i = 1 To Sheets.Count
Me.ComboBox1.AddItem Sheets(i).Name
Next
End Sub
如果楼主的下拉列表指的是组合框而不是Sheet中的自动筛选或数据有效性的话,上面是一个样本,在窗体中的一个组合框ComboBox1在窗体UserForm的初始化事件中,把当前工作簿的每个Sheet的名字加到了List中,使用的是ComboBox的AddItem方法。
更多追问追答
追问
问题是VBA的combobox模块根本没有list属性这个选项。VB里面就有这个选项
追答
嗯,不过,你只要可以添加项目就可以啦
展开全部
使用 ComboBox 的 RowSource 属性试试看!
RowSource Property
Specifies the source providing a list for a ComboBox or ListBox.
Syntax
object.RowSource [= String]
The RowSource property syntax has these parts:
Part Description
object Required. A valid object.
String Optional. The source of the list for the ComboBox or ListBox.
Remarks
The RowSource property accepts worksheet ranges from Microsoft Excel.
RowSource Property
Specifies the source providing a list for a ComboBox or ListBox.
Syntax
object.RowSource [= String]
The RowSource property syntax has these parts:
Part Description
object Required. A valid object.
String Optional. The source of the list for the ComboBox or ListBox.
Remarks
The RowSource property accepts worksheet ranges from Microsoft Excel.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询