|
Support
ActiveX / COM
Visual C++ / MFC
Customer Spotlight
Corporate Partners
Contact Sales
Call center available M-F 9:00 - 6:00 US Eastern Time. U.S. and Canada International Email |
Enabling the Office 2003 Luna Colors when Running in Windows 2000 and Earlier
Author: Mike Palmatier
Posted: October 21, 2005
Environment: Visual Basic 6.0
The CommandBarsGlobalSettings object allows you to override the default 'grey' system colors that are used for the Office 2003 theme
when running you application in Windows 2000 and earlier. To do this, you must change the color in the Form_Initialize event. In
addition to the Window XP blue system them, you can use the Silver and Olive Windows XP system theme colors as well.
Private Sub Form_Initialize() CommandBarsGlobalSettings.ColorManager.SystemTheme _ = xtpSystemThemeBlue End Sub |
