Hi, I would like to get control on menus of Office 2007 but I am not able to find out what type of interface is used to control this. Is there any way to get the control on these. THanks
Hi, I would like to get control on menus of Office 2007 but I am not able to find out what type of interface is used to control this. Is there any way to get the control on these. THanks
1.Word eg: you can rewrite the sub of "save" in VBA template file: Sub FileSave() 'ActiveDocument.Save End Sub 2.word eg: set enble property: activedocument.CommandBars("File").Controls(5).Enabled = False 'office2003