0
votes
1answer
137 views
How to attach CFormView derived class to CMFCTabCrtl?
I have created MFC MDI project with base class CFormView, ribbon, caption bar etc.
In CMainFrame, OnCreate() calls EnableMDITabbedGroups() which automatically adds one tab
and att …
0
votes
1answer
14 views
How can I extend a CMFCRibbonPanel in MFC feature Pack
I want to extend CMFCRibbonPanel - but the constructor is protected (I get the following error: cannot access protected member declared in class 'CMFCRibbonPanel'). The only way to …
1
vote
1answer
17 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 men …
1
vote
1answer
62 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 chan …
0
votes
2answers
88 views
MFC Wizard Appearance
I have a MFC wizard based application (CPropertySheet, CPropertyPage) created with vS2008. I am trying to give my app which is nearly completed a more modern look. I looked into CD …
0
votes
2answers
133 views
EnableCustomizeButton causes memory leak?
I have a CMFCToolBar member in my main frame class. After CreateEx()-ing it, I call EnableCustomizeButton() among other things:
CString strCustomize;
bNameValid = strCustomize.Loa …
1
vote
1answer
193 views
Dynamically resizing CMFCPropertySheet with PropSheetLook_OneNoteTabs style
Hi everybody, 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 me …
0
votes
1answer
26 views
How to get the font size from CMFCPropertyFontProperty
Hi All,
I'm using this code block to get the font name, style and size selected by the user from the font dialog of CMFCPropertyFontProperty control. I'm already able to get the …
2
votes
1answer
136 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:
…
3
votes
4answers
649 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 …
0
votes
1answer
66 views
MFC feature pack - dockable file explorer and dockable properties window
I'm new to MFC and is a bit confused with the new features of "MFC feature pack." Through the wizard I now have an application that looks like an IDE - has a dockable file explorer …
2
votes
1answer
146 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 lpC …
3
votes
7answers
731 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:
…
0
votes
1answer
171 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 thi …
0
votes
2answers
143 views
How do I dynamically change the text of a CMFCRibbonLabel
My CMDIFrameWndEx derived main frame window uses a CMFCRibbonStatusBar to which I add a CMFCRibbonLabel.
I'd like to change the text of this label at runtime:
m_pLabel->SetText …
