另外,定义好以后,如果你在启动项里把默认的快捷菜单选为你自己的,那么所有窗体都是这一个"鼠标右键";如果不选这个,那么可以在某一个窗体的属性中的其他中找到一个快捷菜单的选项,选上自己的就可以拉!作者: andymark 时间: 2003-11-29 04:25
先建立一个弹出式快捷菜单,用CommandBars("快捷菜单名").ShowPopup 就可以
Private Sub 主体_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
If Button = 2 Then
CommandBars("abcd").ShowPopup
End If