Message 1 of 9

Not applicable
03-13-2013
05:42 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Is it possible to position a button on the Open dropdown of the Quick Access Toolbar?
The following works:
CommandControls AssemblyQATControls = oAssemblyRibbon.QuickAccessControls; CommandControls PartQATControls = oPartRibbon.QuickAccessControls; CommandControls ZeroQATControls = oZeroDocRibbon.QuickAccessControls; AssemblyQATControls.AddButton(MyButton, true, true, "AppFileNewCmd"); PartQATControls.AddButton(MyButton, true, true, "AppFileNewCmd"); ZeroQATControls.AddButton(MyButton, true, true, "AppFileNewCmd");
but not this:
ZeroQATControls.AddButton(MyButton, true, true, "NewFileTemplate4");
Solved! Go to Solution.