VBA: How To Reference ComboBox Object

江枫思渺然 提交于 2019-12-19 04:01:41

问题


I have created a lone ComboBox on the first worksheet in Excel. However, I can't find a way to reference its object.

I inserted a module, and one of my subs can successfully reference the following value:

Sheets("Sheet1").Name

However, the following is not available and throws an error:

ComboBox1.Value

Error message is: Run-time error '424': Object required

Can someone explain how to reference this ComboBox in my worksheet? Thanks


回答1:


That depends on the type of combo box that you created:

  • Form Control: Sheets("Sheet1").DropDowns(1)
  • ActiveX Control: Sheets("Sheet1").ComboBox1

Sheets("Sheet1"). can be omitted if the code is placed inside the VBA module Sheet1.

Also see What is the difference between "Form Controls" and "ActiveX Control" in Excel 2010?



来源:https://stackoverflow.com/questions/44083621/vba-how-to-reference-combobox-object

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!