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
-1
votes
1 answer

How To Replace \n or \" in CString With appropriate code values so as ensure that JSON parsing is succesfull MFC?

i Have CString str. for example contains this string: str = "hi there how are you. add me as your "friend""; if you observe, you have \n and \" included in cstring. Json Parsing is not successful because of that \n and \". how do i replace them.…
user2059287
  • 15
  • 1
  • 8
-2
votes
1 answer

can't use CSplitbutton giving compilation error

i can not use CSplitbutton in MFC dialog based application it gives declaration error. i include afxwin.h but giving same problem. please help i am in deadlock.
Vishal
  • 57
  • 8
-3
votes
1 answer

How to set minimum size for m_wndClientArea in CMDIFramewndEx?

This is visualstudio screen. When resizing visualstudio screen to minimum, the tabbeddocument view, left and right dialogpane are displayed with some minimum size. After resizing IF I resize the screen to maximum by dragging it becomes like…
user369287
  • 692
  • 8
  • 28
-4
votes
1 answer

no Appropriate default constructor available in vc++

I have a method Close() in a class called X. I want to use that function in some other class called Y. I have created an object for class A and I call that Close() function there. At that time I am getting an error "No Appropriate default…
Prabhu Harin
  • 69
  • 2
  • 7
1 2 3
13
14