Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何为 Excel 功能区中的每个组合框项目设置 ID?
下面的代码是我为每个项目设置一个文本(标签)的地方,我想为每个项目设置一个 ID,以便以后识别它。我怎样才能做到这一点?
Private Sub cbIndentItem(control As IRibbonControl, index As Integer, ByRef Label) Label = taskLvl(index).NameLvl End Sub
通常组合框对象的名称是在 VBA 编辑器中使用属性窗格设置的。但是,为了以后识别它,您可以通过分配给它的名称或索引值来识别它。