子菜单的CommandbarControls.Move方法

时间:2013-08-22 08:40:16

标签: ms-access access-vba commandbar

使用Move对象的CommandBar方法,我设法使用以下语法移动CommandBarControl

CommandBars("TopMenu").Controls("SomeControl").Move CommandBars("AnotherTopMenu")

然而,我需要将控件移动到CommandBar内的子菜单(或弹出菜单),并且找不到这样做的方法,因为Move方法的第一个参数只会接受CommandBar对象

1 个答案:

答案 0 :(得分:0)

我随后找到了答案here

简而言之,您需要使用popupmenu控件的CommandBar属性。

CommandBars("AnotherTopMenu").Controls("PopupMenu").CommandBar