Software FX Posted October 13, 2000 Report Share Posted October 13, 2000 The problem is happening because, I think, the current type is not in the list. You can remove the Gallery command from the Menus and Toolbar as follows: To remove it form the right-click menu for instance: gal = m_pChartFX->GetCommands()->GetItem( CFX_ID_CM_BACKGROUND); gal->RemoveSubCommand( 4 ); // Fourth Item in the menu To remove it from the ToolBar: m_pChartFX->ToolBarObj->RemoveItems(1,4); // Fourth Item in the toolbar (coincidence!) -- Frank SFX "Edward Evans" <eevans@pacsim.com> wrote in message news:cdWV0#TNAHA.1432@sfxserver.softwarefx.com... > Try this: > ICommandItemPtr gal; > gal = m_pChartFX->GetCommands()->GetItem( CFX_ID_GALLERY ); > gal->RemoveSubCommand( 0 ); > > This removes the first gallery option, LINES, from the gallery options on > the toolbar, popup menus, and in the series tab in the "Properties" dialog. > > For some reason the above code changes the current gallery drop-down icon > (the one shown on the button) to that of the file|open icon. Probably > because the LINES option is default choice on startup. > > Does anyone know how to remove the gallery option altogether? I don't want > my user's to be able to change the gallery setting at all. > > -Ed Evans > eevans@pacsim.com > > > Bob Nims wrote in message ... > >I need to be able to remove two chart types from the "Gallery". It's not > >clear how to go about this so that both the popup menu and the toolbar > >exclude these types as selections. > > > >Bob Nims > > > > > > Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.