|
||||
These pages are no longer updated and are only available for archive purposes.Click here to visit the pages with updated information. Change the availability for a menu itemThe macro below shows how you can toggle the availability state for a menu item. Sub ToggleMenuControls()
Dim m As CommandBarControl, mi As CommandBarControl
Set m = CommandBars.FindControl(ID:=30002) ' File Menu
If m Is Nothing Then Exit Sub
For Each mi In m.Controls
If mi.ID = 18 Then mi.Enabled = Not mi.Enabled
' toggles the state for the Print menu
Next mi
Set mi = Nothing
Set m = Nothing
End Sub
On the download page for CommandBars you can find the tool CommandBar Tools that will help you to find the ID numbers of the built-in CommandBars.
Document last updated 2000-02-05 12:47:00 Printerfriendly version
|
||||
|
||||