如何在VBA Excel中将Treeview类导出到其他工作簿?

时间:2018-07-03 08:43:25

标签: excel vba excel-vba

我将具有树状视图的用户窗体导出到其他工作簿,但出现此错误: Error

我相信,因为工作簿中没有Treeview类,所以我使用树形视图导出了用户窗体,如下图所示: enter image description here

但是,在原始工作簿中,工作簿中有一个Treeview类,如下所示: enter image description here

我不明白为什么其他工作簿中没有它。如何在没有该类的工作簿中导出或添加Treeview类?

1 个答案:

答案 0 :(得分:2)

如果我们在工作簿中选择TreeView项,则可以看到TreeViewMSComctlLib的成员

MSComctlLib

选择此选项后,我们会看到MSComctlLib是库Microsoft Windows Common Controls 6.0 (SP6)的一部分

Microsoft Windows Common Controls 6.0 (SP6)

在VBA编辑器中检查您在Tools->References中缺少工作簿的引用,并确保选择了对Microsoft Windows Common Controls 6.0 (SP6)的引用。

如果缺少它,请选择它,TreeView应该可以工作