Here are the themes available:
Case ID_OPTIONS_STYLEBLACK CommandBars.VisualTheme = xtpThemeRibbon CommandBarsGlobalSettings.Office2007Images = App.Path & "\Styles\Office2007Black.dll" ControlFile.Style = xtpButtonAutomatic CommandBars.PaintManager.RefreshMetrics CommandBars.RecalcLayout picClient.Refresh Case ID_OPTIONS_STYLEBLUE: CommandBars.VisualTheme = xtpThemeRibbon CommandBarsGlobalSettings.Office2007Images = "" ControlFile.Style = xtpButtonAutomatic CommandBars.PaintManager.RefreshMetrics CommandBars.RecalcLayout picClient.Refresh Case ID_OPTIONS_STYLESILVER CommandBars.VisualTheme = xtpThemeRibbon CommandBarsGlobalSettings.Office2007Images = App.Path & "\Styles\Office2007Silver.dll" ControlFile.Style = xtpButtonAutomatic CommandBars.PaintManager.RefreshMetrics CommandBars.RecalcLayout picClient.Refresh Case ID_OPTIONS_STYLEAQUA: CommandBars.VisualTheme = xtpThemeRibbon CommandBarsGlobalSettings.Office2007Images = App.Path & "\Styles\Office2007Aqua.dll" 'ControlFile.Style = xtpButtonAutomatic ControlFile.Style = xtpButtonCaption CommandBars.PaintManager.RefreshMetrics CommandBars.RecalcLayout picClient.Refresh Case ID_OPTIONS_STYLEWHITE: CommandBars.VisualTheme = xtpThemeRibbon CommandBarsGlobalSettings.Office2007Images = App.Path & "\Styles\Office2007White.dll" ControlFile.Style = xtpButtonCaption CommandBars.PaintManager.RefreshMetrics CommandBars.RecalcLayout picClient.Refresh Case ID_OPTIONS_STYLESCENIC: CommandBars.VisualTheme = xtpThemeRibbon CommandBarsGlobalSettings.Office2007Images = App.Path & "\Styles\Office2007Scenic.dll" ControlFile.Style = xtpButtonCaption CommandBars.PaintManager.RefreshMetrics CommandBars.RecalcLayout picClient.Refresh Case ID_OPTIONS_STYLESYSTEM: ControlFile.Style = xtpButtonAutomatic CommandBars.VisualTheme = xtpThemeOfficeXP CommandBars.Options.UseFadedIcons = False CommandBars.Options.IconsWithShadow = False CommandBars.RecalcLayout picClient.Refresh
|