Tagged Questions
The MFC Feature Pack is a set of enhancements to the version 9 of MFC to enable MFC-based applications to take on the look and feel of Microsoft Windows and Office applications. It was first shipped in April 2008 for Visual Studio 2008. A of MFC version 10 and Visual Studio 2010 is it completely intergrated into Visual Studio and documented on MSDN.
10
votes
2answers
1k views
Changing image of a menu button in a CMFCToolbar
I have a menu button inside a CMFCToolbar and I would like to replace the bitmap of the button each time a different entry is selected in the menu as each entry has its own icon.
I succeed in ...
5
votes
3answers
608 views
Does Microsoft Office 2010 make use of WPF or is it plain old MFC?
I have been using WPF for some time now and I am trying to reproduce some of the nifty UI features of their office suite. Although very easy in WPF, I am wondering how it could be done using MFC ...
5
votes
7answers
2k views
Is the MS Ribbon/Office UI License worth worrying about?
Imagine I want to create an application which is very similar to MS Word 2007, using C++ in VS2008 and the MFC Feature Pack. For the ribbon, there are 3 options available to me:
Use the ribbon from ...
5
votes
6answers
4k views
Icons on menus of MFC Feature Pack classes
There are three places where menus show up in the new MFC functionality (Feature Pack):
In menu bars (CMFCMenuBar)
In popup menus (CMFCPopupMenu)
In the 'dropdown menu' version of CMFCButton
I ...
4
votes
3answers
2k views
How can I add a ribbon menu to an existing MFC application?
Microsoft Visual C++ 2008 Feature Pack has ribbon menu support. Is it possible to make use of that in an existing MFC application that was not created with a ribbon menu?
4
votes
5answers
4k views
How can I place a MFC CFormView inside a CDockablePane?
How can I place a MFC CFormView inside a CDockablePane which was introduced in the VS 2008 MFC Feature Pack?
3
votes
2answers
394 views
How to set a CMFCPropertyListCtrl's column width?
I'm adding properties to an object of type CMFCPropertyGridCtrl like this:
myPropertyListCtrl.AddProperty(
new CMFCPropertyGridProperty(
_T("Name"),
foo.GetName())
);
The result ...
3
votes
1answer
609 views
CMFCPropertyGridProperty numeric input
I'm using MFC feature pack and I have a dockable properties window. How do I restrict the user from typing any other characters but numbers alone in the values field?
Thanks...
3
votes
1answer
546 views
How to modify the tool rect of a CToolTipCtrl?
This question is related to this one.
In a CDockablePane derived class I have a CTreeCtrl member for which I add a ToolTip in OnCreate():
int CMyPane::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
...
3
votes
1answer
997 views
How to remove the close button from an MFC caption bar
Is there an easy way to remove the close button from an MFC feature pack caption bar?
(I don't mean the window caption, I'm talking about the little information bar that can appear at the top of ...
3
votes
3answers
1k views
How do I use CMFCRebar to produce an acceptable look and feel?
I am trying to use some classes from the MFC Feature Pack to improve the look & feel of my MFC application.
In my application, I use one CReBar object to dock three different toolbars. I have ...
3
votes
4answers
2k views
Can you use CMFCVisualManager with a dialog based application?
Can you use CMFCVisualManager with a dialog based application to change the applications appearance? If so how is it done?
The idea is to change the shape, colour etc. of controls such as push ...
2
votes
1answer
173 views
Discard ALT key press in CMainFrame
I'm having the following code:
CMainFrame* pFrame = new CMainFrame;
if (!pFrame)
return FALSE;
m_pMainWnd = pFrame;
// create and load the frame with its resources
...
2
votes
2answers
791 views
MFC Ribbon - get base element clicked from command
I have a CMFCRibbonUndoButton on the ribbon of an MFC application. I have a handler for when its ID is clicked (ON_COMMAND(ID_EDIT_UNDO, ...)). However, when the button is also in the quick access ...
2
votes
1answer
395 views
MFC SDI Application without a default “New Document” on Startup
My application is an SDI with multiple views. By default, it creates a new document when the application starts. I want to modify this behavior so that a new document is created only when user ...
2
votes
1answer
2k views
CMFCButton with Vista Style
I can't seem to get a CMFCButton to be displayed in Vista style in a dialog box application. I'm using VS2008 with MFC Feature Pack.
Here are some steps to reproduce my problem:
Create a new MFC ...
2
votes
1answer
1k views
MFC Tabbed Documents - how to enable middle-mouse button to close document?
If you create a new MFC application (with MFC Feature Pack), and using all the defaults, click Finish. It creates an MDI application with the new "Tabbed Documents" style.
I think these are great ...
2
votes
2answers
1k views
Cannot edit labels in a CListCtrl
I'm building a project with MFC Feature Pack. Is this project I have a window which includes a CView, which includes a CListCtrl-derived object. The object includes the LVS_EDITLABELS flag.
Somehow I ...
2
votes
2answers
3k views
Disable/Enable Ribbon Buttons for MFC Feature Pack
I am using the MFC Feature Pack and I have some buttons on a ribbon bar, instances of CMFCRibbonButton. The problem is that I would like to enable and disable some of them in certain conditions, but ...
2
votes
1answer
498 views
Should the new MFC Feature pack contols appear in VS toolbox
I'm trying to use some of the new MFC feature pack controls on an existing MFC app, with VS2008 SP1. None of the new controls appear in the dialog-editor toolbox.
Should I expect them to be there, ...
2
votes
2answers
1k views
CMFCToolTipCtrl or CTooltipManager examples?
Has anyone tried using these new VS2008 MFC classes yet? I can't seem to find any examples anywhere. Even the VS2008 samples(1) don't mention these classes. (They use CToolTip.)
(1) Update: My ...
2
votes
9answers
1k views
Find out which colours are in use when using the MFC Feature pack in Office 2007 style
I'm updating some of our legacy C++ code to use the "MFC feature pack" that Microsoft released for Visual Studio 2008. We've used the new classes to derive our application from CFrameWndEx, and are ...
1
vote
1answer
112 views
CMFCPropertyGridProperty list of values?
Is there a standard way to hold a user editable list of values in a CMFCPropertyGridProperty? I'm thinking a string with semi-colon delimiter (that seems to be the windows standard). If I want an ...
1
vote
1answer
74 views
Why am I getting a question mark in my menu in place of a unicode character?
I have a MFC application compiled with MBCS. We are also using the CMFCMenuBar from the MFC Feature Pack to display our menu.
I am trying to add unicode characters to my menu using the following ...
1
vote
1answer
215 views
CMFCCaptionBar with multiple buttons?
I made a subclass of CMFCCaptionBar in what has so far been a vain attempt to make it do something more useful than just having a single icon, single text field, and single button while still ...
1
vote
1answer
774 views
MFC Feature pack in Office 2010 style
I developed app in mFC using vs2008 and MFC Feature pack 2008. its look and feel is like 2007 office style. Now i want app look and feel like office 2010.
Will you explain me how to do it?
1
vote
1answer
611 views
Is it possible to manipulate the menu of my CMDIFrameWndEx's CMFCMenuBar?
My main frame has a CMFCMenuBar member, which contains the menu of the current document type.
I would like to add/remove a sub-menu dynamically.
For example, if the user chooses to display a map pane, ...
1
vote
2answers
972 views
Visual Studio 2010 - C++ MFC application with Ribbon UI - Transparency in bitmaps
I am playing around with a small MFC-wizard-generated application, in Visual C++ 2010, and I just decided to put my own bitmap into the resources to replace the three-cubes MFC bitmap that shows up in ...
1
vote
1answer
196 views
How to change RibbonStatusBarPane text color?
My application is using MFC Ribbon(VS2008 + Feature pack9).
I'm not able to change RibbonStatus Bar Pane text color.I override the virtual int DrawPaneText(CDC* pDC, const CString& strText, CRect ...
1
vote
0answers
266 views
How can I make a CMFCRibbonEdit automatically convert contents to uppercase?
I am using the MFC Feature pack in Visual Studio 2008. I have an edit box (CMFCRibbonEdit) in a ribbon that I would like only to contain uppercase letters. I know that I can pass ES_UPPERCASE to the ...
1
vote
1answer
423 views
Changing CFrameWnd to CFrameWndEx in MFC causes unhandled exception - any ideas?
Still getting used to this MFC lark and I've hit a brick wall on this particular problem. I'm updating some legacy code to use some of the more refined controls available in the MFC Feature Pack.
...
1
vote
1answer
358 views
Is there any better MFC 2008 Feature Pack Documentation
I'm trying to figure out how to use the CDockablePane.
But the just a few total overloaded demo samples (look like marketing samples not intended for programmers) i can't find any Tutorial kind. And ...
1
vote
2answers
227 views
How to use F10 as a shortcut in an MFC application using a Ribbon
I developed an MFC application using VS2008 and the MFC featurepack.
This application UI is using a ribbon.
I now need to have F10 as a proper shortcut for one of the critical feature of my ...
1
vote
1answer
876 views
Is it possible to create a CImageList with alpha blending transparency?
I would like to knwo if it is possible to create a CImageList with alpha blending transparency.
Sample code that creates a CImageList with ugly transparency (no alpha blending)
...
1
vote
3answers
481 views
Dockable panes created in CChildFrame not visible the second time the app. starts
I have created some dockable panes in CChildFrame::OnCreate()
The first time i start the application they are shown.
The second time i start the application they are created but the splitterwindows ...
1
vote
3answers
771 views
How to change the CDockablePane caption
How do I force a refresh the caption of a CDockablePane in the MFC feature pack? I'm working with the tabbed visual studio style example, and I want to change the captions for the tabs.
These seem ...
1
vote
1answer
1k views
CMFCToolbar layout not restored properly between sessions
I'm having a problem with the CMFCToolbar class where the positions of the toolbars are not being restored properly between sessions.
Here is a screen shot of how the toolbars are arranged before the ...
1
vote
2answers
2k views
How to dock CPaneDialog to MainFrm and..?
I have problem with CPaneDialog.
I tested with SetPaneSize MFC feature pack sample projects. What is weird is that CPaneDialog can't be docked to MainFrm while CDockablePane can be. The CPaneDialog ...
1
vote
1answer
264 views
Help finding issue with tooltip on CMFCMenuBar
I have an MFC app using the new UI features released in the Feature Pack and I'm having trouble with tooltips on the menubar.
By default, I beleive tooltips are not enabled on menu items. Yet ...
1
vote
1answer
449 views
Will the Scenic Ribbon ever be supported by the MFC Feature Pack?
My team has spent a long time developing a nice UI using the ribbon included in the VS2008 MFC Feature Pack.
Now that Windows 7 is out and the look and feel of the ribbon has changed, my application ...
1
vote
2answers
815 views
Why is CMFCMenuBar not utilizing the accelerator table?
In a doc/view project using VS2008, a MFCMenuBar seems to load the correct MENU resource (IDR_MAINFRAME) from the project, since adding and removing menu items is reflected in the menu's UI. It even ...
1
vote
1answer
795 views
How to Remove Visual C++ “Expand Menu” Arrow?
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 ...
1
vote
0answers
378 views
MFC Feature Pack Bug? Ribbon Based GUI does not restore after hibernation (sleep mode)
I've forced with a possible bug feature of MFC Feature Pack under Windows Vista. It can be easily recreated:
Create a new SDI app using MFC Feature Pack (with Ribbon based interface). You can also ...
1
vote
1answer
1k views
Is it possible to add CMFCToolBar to a dialog?
I just tryed the standard way for adding CToolbar to a dialog on the new CMFCToolBar. But it doesn't work. Befor I dip into the new implementation, I want to know if it actually possible?
1
vote
2answers
1k views
How do I make a CMFCToolBar recognize image masks?
I have a CMFCToolBar-derived class and an insance thereof is the member of a CDockablePane-derived class.
I looked at the VisualStudioDemo sample to see how it's done and have this so far:
int ...
1
vote
2answers
529 views
Is it possible to remove CMFCRibbonPanel from CMFCRibbonCategory?
i'm looking for a trick to remove an CMFCRibbonPanel from CMFCRibbonCategory. There is just AddPanel() function in the CMFCRibbonCategory, but no RemovePanel().
Do I really need to rebuild my whole ...
1
vote
1answer
276 views
CVSListBox notification after delete
I've just added one of the new (MFC Feature Pack) CVSListBox controls to a project. The list of items in the control is tracked by some other objects in my application, so I need to take lots of ...
1
vote
2answers
677 views
Dynamically resizing CMFCPropertySheet with PropSheetLook_OneNoteTabs style
I'm trying to resize dynamically a CMFCPropertySheet to add a custom control at the bottom of each page. As all Property Pages are not of the same height, I have a mechanism to increase the size if ...
1
vote
5answers
3k views
How do I display custom tooltips in a CTreeCtrl?
I have a class derived from CTreeCtrl. In OnCreate() I replace the default CToolTipCtrl object with a custom one:
int CMyTreeCtrl::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if ...
1
vote
1answer
1k views
How do I display a tooltip for a CMFCRibbonButton in the status bar?
I have a CMFCRibbonStatusBar in my mainframe to which I add a CMFCRibbonButtonsGroup which again has a CMFCRibbonButton. This button has the same ID as a menu entry.
Creating the button is done as ...