Questions tagged [mfc-feature-pack]

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 Visual Studio 2008, and as of Visual Studio 2010 it is completely integrated and documented.

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 Visual Studio 2008, and as of Visual Studio 2010 it is completely integrated and documented.

The Visual C++ 2008 Feature Pack extends the VC++ Libraries shipped with Visual Studio 2008 and is fully covered under Microsoft's standard support policies.

The VC++ 2008 MFC libraries have been extended to support creation of applications that have:

  • Office Ribbon style interface
  • Office 2007, Office 2003, and Office XP look and feel
  • Modern Visual Studio-style docking toolbars and panes
  • Fully customizable toolbars and menus
  • A rich set of advanced GUI controls
  • Advanced MDI tabs and groups

This feature pack also includes an implementation of TR1. Portions of TR1 are scheduled for adoption in the upcoming C++0x standard as the first major addition to the ISO 2003 standard C++ library. Our implementation includes a number of important features such as:

  • Smart pointers
  • Regular expression parsing
  • New containers (tuple, array, unordered set, etc)
  • Sophisticated random number generators
  • Polymorphic function wrappers
  • Type traits

Note: This feature pack does not include C99 compatibility or support for special math functions.

199 questions
0
votes
0 answers

CPaneFrameWnd without WS_CAPTION cannot support different DPIs in multiple monitors (Windows10)?

I am using MFC feature pack to develop my own dockable pane. In pane's floating state, I don't use WS_CAPTION style due to design requirement when creating CPaneFrameWnd. Everything runs well until moving the floating CPaneFrameWnd from one monitor…
Lingyi
  • 19
  • 5
0
votes
1 answer

How can add a "Collapse the Ribbon" button to a CMFCRibbonBar

I'm using CMFCRibbonBar in an MFC based Application, I would like to add the ability to collapse the ribbon like you can in Office, does anyone know if this can be done? I would be quite happy if I it was only possible to implement the button in…
MyDeveloperDay
  • 2,485
  • 1
  • 17
  • 20
0
votes
1 answer

MFC Tabbed Views

I need a basic on how to declare/implement and use the CTabView class for an MFC SDI. I have searched in vain for samples and reference. I assume because MFC is not the most current foundation information is hard to find on certain topics,…
0
votes
2 answers

Why is a window not coming to top, inspite using setwindowpos?

m_pMainWnd->SetForegroundWindow(); m_pMainWnd->SetWindowPos(&CWnd::wndTop, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE); i used the above lines to bring one of my windows to top. But to my disappointment, nothing is happening. Although using…
0
votes
2 answers

How to change the color of a property in CMFCPropertyGridCtrl

How can I change color of a property(single property among all other properties) in CMFCPropertyGridCtrl?
Suman Reddy
  • 91
  • 1
  • 13
0
votes
0 answers

How to deselecting (Remove Focus ) a specific property in MFCPropertyGridCtrl

I am working in an MFC application with CMFCPropertyGridCtrl. We have SetCurSel() function for selecting a required property. Is there any way to deselecting that property(exact opposite of SetCurSel())? The problem is Having lot of groups in…
Suman Reddy
  • 91
  • 1
  • 13
0
votes
0 answers

Tab navigation in MFCProprtyGridCtrol

I am working in an MFC windows application. I am using Grid control with some icons and its properties are displaying with MFC Property Grid Control ( CMFCPropertyGridCtrl ). I need to implement tab navigation. I i am in some icon (let us assume…
Suman Reddy
  • 91
  • 1
  • 13
0
votes
1 answer

Tool tip for disabled check boxes in Check List Box control in MFC

I am working in an MFC windows application. I am using check boxes in Check List Box control. Some of the check boxes are disabled. How can I implement the tool tips for disabled check boxes?
Suman Reddy
  • 91
  • 1
  • 13
0
votes
1 answer

How to make CMFCToolBarComboBoxButton able to works in vertical mode?

The MFC Feature Pack toolbar combo-button (class CMFCToolBarComboBoxButton) works perfectly in horizontal toolbar mode. But in vertical layout mode it is the simple press button without combobox feature. How to make CMFCToolBarComboBoxButton able…
23W
  • 1,413
  • 18
  • 37
0
votes
2 answers

When MFC (Feature Pack) calling for CDockablePane::Serialize()?

Does CDockablePane::Serialize() method is calling from MFC Feature Pack core? I have dockable window class that inherited from CDockablePane class. My class override virtual Serialize() method and declared as serial DECLARE_SERIAL/IMPLEMENT_SERIAL.…
23W
  • 1,413
  • 18
  • 37
0
votes
2 answers

Docking Tabbed Pane position in VS2008 with MFC Feature Pack 1

Use naming from http://msdn.microsoft.com/en-us/library/cc309030.aspx When I docking CPaneDialog with another CDockablePane the Tabbed Pane position is always at bottom of dock area, How to set Tabbed Pane position to top of dock area like normal…
Por
  • 21
  • 1
  • 5
0
votes
1 answer

Copy shortcut operation with CRichEditCtrl in MFC

I am very new to MFC. I am having following code for Copy and SelectAll shortcuts for CRichEditCtrl object. ON_COMMAND(ID_EDIT_COPY, OnCopy) ON_COMMAND(ID_EDIT_SELECT_ALL, OnSelectAll) But I am not able to catch breakpoint for Copy (Ctrl+C) and…
user1833852
  • 51
  • 2
  • 10
0
votes
1 answer

C++ CMFCPropertyGridColorProperty EnableAutomaticButton

I have found very little documentation when it comes to the C++ Feature Pack and all the examples I have found all are the same example. The problem I am experiencing involves EnableAutomaticButton in the color panel. If I set the default color to…
RobNHood
  • 119
  • 1
  • 2
  • 11
0
votes
1 answer

Crash/Assertion after calling ForceRecalcLayout

I have added Ribbon to an existing MFC application. The ribbon is created using the Editor. In one of the panel I have a Custom CMFCRibbonGallery (derived from) whose contents (icon) I change dynamically. (It is much like the Styles Gallery in…
0
votes
1 answer

Filtering file types with CMFCShellTreeCtrl

I'm using a CMFCShellTreeCtrl derived class called CShellTreeCtrl in an CMFCOutlookBar object to display files and I'd like to filter file types and later be able to drag and drop files from it. I've managed to display files as well as folders, but…
Jak
  • 471
  • 5
  • 20