The Windows 7 Taskbar is one of the most noticeable and useful features of the new operating system, and MFC 10 introduces a number of enhancements that make it easy to integrate the Taskbar with your application.
Latest C++ & MFC Articles - Page 3
C++ Programming: Using Initializer Lists And Sequence Constructors in C++0x
Developers rejoice, the C++0x standard has changed the rules of initialization to allow you to initiate almost any object.
Changes to MFC in Microsoft Visual Studio 2010
This article describes the changes to MFC or the IDE in relation to MFC in Microsoft Visual Studio 2010.
Customizing MFC Document Recovery
This C++ tutorial demonstrates how MFC 10 delivers on it's promise by delivering the boiler-plate functionality required to build a professional Windows C++ application with minimal effort while allowing .NET developers to customize aspects of MFC behavior.
Improve Application Quality with Microsoft Foundation Class (MFC) Restart and Recovery
Windows Vista and 7 provide the ability to restart crashed or hung applications and recover your work. By building on the strength of the Document-View Architecture, Microsoft Foundation Class (MFC) 10 allows new and existing applications to easily take advantage of these Windows features.
Advanced C++ Listcontrol
Use your C++ Programming skills to create a special list control that allows a control to be inserted in a particular cell.
Latest Developer Videos
More...Latest CodeGuru Developer Columns
MFC Integration with the Windows Transactional File System (TxF)
The Transactional File System (TxF), which allows access to an NTFS file system to be conducted in a transacted manner through extensions to the Windows SDK API. MFC 10, has been extended to support TxF and related technologies. This support allows existing MFC applications to be easily extended to support kernel transactions.
.NET Framework: Collections and Generics
The original release of the .NET Framework included collections as .NET was introduced to the Microsoft programming world. The .NET Framework 2.0 introduced generics to complement the System.Collections namespace and provide a more efficient and well performing option. Read on to learn more...

Adding File Associations
For some reason, setting file associations is still somewhat of a mystery to many a developer. Hannes du Preez shows you how to create an installer package to do it for you!
Implementing a WCF Message Contract
WCF implementations normally take two different approaches; a Document style or an API style. Document style implementations are more flexible and often easier to extend and version. Also, Document style or rather, Message Contract service implementations, work well between systems with a shared message assembly. Jeffrey Juday guides you through architecting a WCF Message Contract implementation.