vote up 1 vote down star

When creating menus with submenus in Visual C++, I find that submenus begin as arrows that I must click to expand to see their contents. Is there a way (programmatically) to have the submenus pop-out already expanded (with no arrow to click)?

Here is an image of what I am talking about, before and after clicking aforementioned arrow: screen shot also here

flag
What UI library is that?!! Which operating system? I've never seen that on Windows before. – Agnel Kurian Aug 4 at 15:25
Uhm, it's in a Visual Studio 2008 MFC Application using ribbon menus. That's about all I know. – Nathan Fig Aug 4 at 21:40

1 Answer

vote up 1 vote down check

it seems you are using the MFC Feature Pack. Go to CMainFrame::OnCreate(), you should be able to find something like

CMFCToolBar::SetBasicCommands(lstBasicCommands);

somewhere inside it.

lstBasicCommands

is a list that holds all the menu items that are not be hidden initially. Simple populate it with the items you like.

You may also want to check out the samples code available here: C:\Program Files\Microsoft Visual Studio 9.0\Samples\1033

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.