Creating a Tabbed Dialog using MFC Property Sheets
This post assumes that you are working on an existing MFC project and wish to add a tabbed dialog to your application. This example was created in Visual Studio 2008. Like most of the other postings here, there is not much in the way of extra bells and whistles, just a very simple example to get you started... VS2003 download available here . Create a Property Sheet: In the main menu, click Project -> Add Class -> MFC Class. Set the Class Name eg CImageSheet and set the Base Class to a CPropertySheet . Click Finish and OK: This will generate the "ImageSheet.h" header file and class definition. Create Property Pages: In the main menu, click Project -> Add Class -> MFC Class. Set the Class Name eg CImageDimensions and set the Base Class to a CPropertyPage : Repeat for as many other property pages as needed: Modify the Property Sheet class: Modify this class so that it contains additional includes for all the property pages you want to ...