Thursday, May 17, 2012
Call Toll Free: (877) 723-1442 U.S. and Canada
Quick Menu
ActiveX / COM
Visual C++ / MFC
Case Studies
Contact Sales

Call center available M-F 9:00 - 6:00 US Eastern Time.

U.S. and Canada
(877) 723-1442

International
(517) 625-5729

Email

Applying the Office 2007 Theme

Author: Mike Palmatier
Posted: May 3, 2008
Environment: Visual C++ 6.0

Applying the Office 2007 theme to the Calendar can be accomplished with only a few lines of code. You also have the option to change the base color used in the theme. By default the color will be the same color blue as used in Office 2007.

Start by instantiating a CalendarThemeOffice2007 object.

    //Create a new Office 2007 theme object

    CXTPCalendarThemeOffice2007* pTheme2007 = new CXTPCalendarThemeOffice2007;

Next you can optionally define the base color used in the Office 2007 theme.

    //This will give a default "gray" base color

    pTheme2007->m_clrBaseColor = RGB(22,22,22);

Now apply the new Office 2007 theme to the Calendar.

    //Apply the Office 2007 theme to the Calendar

    GetCalendarCtrl().SetTheme(pTheme2007);