<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Codejock Developer Community : Version 18 Ribbon Office 2016 Theme</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Command Bars : Version 18 Ribbon Office 2016 Theme]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 13 May 2026 03:34:37 +0000</pubDate>
  <lastBuildDate>Sat, 28 Jul 2018 02:18:03 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>forum.codejock.com/RSS_post_feed.asp?TID=23400</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Codejock Developer Community]]></title>
   <url>http://forum.codejock.com/forum_images/codejock-logo.gif</url>
   <link>http://forum.codejock.com/</link>
  </image>
  <item>
   <title><![CDATA[Version 18 Ribbon Office 2016 Theme : still not solved in 18.4.0, so...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=23400&amp;PID=76969&amp;title=version-18-ribbon-office-2016-theme#76969</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=7570">Nick</a><br /><strong>Subject:</strong> 23400<br /><strong>Posted:</strong> 28 July 2018 at 2:18am<br /><br />still not solved in 18.4.0, so still needs a workaround (involving forcing the form background to white irrespective of the theme background]]>
   </description>
   <pubDate>Sat, 28 Jul 2018 02:18:03 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=23400&amp;PID=76969&amp;title=version-18-ribbon-office-2016-theme#76969</guid>
  </item> 
  <item>
   <title><![CDATA[Version 18 Ribbon Office 2016 Theme : I have moved discussion about...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=23400&amp;PID=76502&amp;title=version-18-ribbon-office-2016-theme#76502</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=8730">olebed</a><br /><strong>Subject:</strong> 23400<br /><strong>Posted:</strong> 20 January 2018 at 3:01pm<br /><br />I have moved&nbsp; discussion about Shell Icons in BackstagePageRecent to <a href="http://forum.codejock.com/forum_posts.asp?TID=23547" rel="nofollow">this separate topic</a>&nbsp;]]>
   </description>
   <pubDate>Sat, 20 Jan 2018 15:01:23 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=23400&amp;PID=76502&amp;title=version-18-ribbon-office-2016-theme#76502</guid>
  </item> 
  <item>
   <title><![CDATA[Version 18 Ribbon Office 2016 Theme : thanks guys . I&amp;#039;ve got the...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=23400&amp;PID=76493&amp;title=version-18-ribbon-office-2016-theme#76493</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=7570">Nick</a><br /><strong>Subject:</strong> 23400<br /><strong>Posted:</strong> 20 January 2018 at 7:16am<br /><br />thanks guys <img src="http://forum.codejock.com/smileys/smiley1.gif" border="0" alt="Smile" title="Smile" />.&nbsp; I've got the backstage buttons and separator ok now based on what you've shown as examples.&nbsp; I'm actually doing it this way now rather than changing each individual control...<br><font size="2"><br></font><font face="Courier New, Courier, mono" color="#0000CC"><font size="2">Public Sub ChangeButtonTheme(xObject As Object)<br>'- object can be a form or a usercontrol<br>&nbsp;&nbsp; Dim xButton As Control<br>&nbsp;&nbsp; Dim btnStyle As XTPBackstageButtonControlAppearanceStyle<br>&nbsp;&nbsp; Dim sepStyle As XTPBackstageSeparatorControlAppearanceStyle<br><br>&nbsp;&nbsp; Select Case CurrentRibbonTheme<br>&nbsp;&nbsp; Case ID_OPTIONS_STYLESYSTEM<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; btnStyle = xtpAppearanceStandard<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; sepStyle = xtpSeparatorAppearanceResource<br>&nbsp;&nbsp; Case ID_OPTIONS_STYLE2007BLUE To ID_OPTIONS_STYLE2007AQUA<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; btnStyle = xtpAppearanceOffice2007<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; sepStyle = xtpSeparatorAppearanceResource<br>&nbsp;&nbsp; Case ID_OPTIONS_STYLE2013WHITE To ID_OPTIONS_STYLE2013DARKGREY<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; btnStyle = xtpAppearanceOffice2013<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; sepStyle = xtpSeparatorAppearanceOffice2013<br>&nbsp;&nbsp; Case ID_OPTIONS_STYLE2016WHITE To ID_OPTIONS_STYLE2016COLORFUL<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; btnStyle = xtpAppearanceOffice2013<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; sepStyle = xtpSeparatorAppearanceOffice2013<br>&nbsp;&nbsp; Case ID_OPTIONS_STYLEVISUALSTUDIO2015BLUE To ID_OPTIONS_STYLEVISUALSTUDIO2015LIGHT<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; btnStyle = xtpAppearanceVisualStudio2015<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; sepStyle = xtpAppearanceVisualStudio2015<br>&nbsp;&nbsp; Case ID_OPTIONS_STYLE2016WHITE To ID_OPTIONS_STYLE2016COLORFUL<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; btnStyle = xtpAppearanceOffice2013<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; sepStyle = xtpSeparatorAppearanceResource<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; '- codejock example uses resource for both<br>&nbsp;&nbsp; Case Else<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; btnStyle = xtpAppearanceResource<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; sepStyle = xtpSeparatorAppearanceResource<br>&nbsp;&nbsp; End Select<br>&nbsp;&nbsp; <br>&nbsp;&nbsp; For Each xButton In xObject.Controls<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If TypeOf xButton Is BackstageButton Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; xButton.Appearance = btnStyle<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; xButton.ForeColor = mainForm.BackstageView.GetForeColor<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; xButton.BackColor = mainForm.BackstageView.GetBackColor<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ElseIf TypeOf xButton Is BackstageSeparator Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; xButton.Appearance = sepStyle<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End If<br>&nbsp;&nbsp; Next<br>End Sub</font><br></font><br>There's still an issue with the BackstageListBox (for a recent file list) though - it fails to pick up any of the themes (not just the office 2016 one) and it fails to show the appropriate icon associated with the file type.&nbsp; Codejock's own examples (VB RibbonSample) don't work either as from v17.1.0, though v16.4.0 does work.&nbsp; For example, try the Visual Studio 2015 dark theme in Codejock's examples, and you'll see what I mean.&nbsp; So this appears to be a bug that's been around for a couple of years <img src="http://forum.codejock.com/smileys/smiley19.gif" border="0" alt="Cry" title="Cry" />.&nbsp; <br>]]>
   </description>
   <pubDate>Sat, 20 Jan 2018 07:16:51 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=23400&amp;PID=76493&amp;title=version-18-ribbon-office-2016-theme#76493</guid>
  </item> 
  <item>
   <title><![CDATA[Version 18 Ribbon Office 2016 Theme :   Nick wrote:I&amp;#039;m using the...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=23400&amp;PID=76490&amp;title=version-18-ribbon-office-2016-theme#76490</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=8730">olebed</a><br /><strong>Subject:</strong> 23400<br /><strong>Posted:</strong> 19 January 2018 at 11:42am<br /><br /><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Originally posted by Nick" alt="Originally posted by Nick" style="vertical-align: text-bottom;" /> <strong>Nick wrote:</strong><br /><br />I'm using the Office 2016 dll's as suggested, and this works fine for the ribbon bar.&nbsp; But I can't get the backstage buttons and recent file list controls to adopt the Office 2016 theme.&nbsp; How do I get this to work?<br></td></tr></table><br><br>Hello Nick,<br><br>You can explore our sample&nbsp; Samples\CommandBars\C#.NET\RibbonSample\<br>I have added example how customize Ribbon Backstage Page<br><table width="99%"><tr><td><pre class="BBcode">//<b>frmMain.cs</b><div>private void SetBackstageTheme()</div><div>{</div><div>&nbsp; &nbsp; XtremeCommandBars.XTPBackstageButtonControlAppearanceStyle nButtonAppearance = XtremeCommandBars.XTPBackstageButtonControlAppearanceStyle.xtpAppearanceResource;</div><div>&nbsp; &nbsp; XtremeCommandBars.XTPBackstageSeparatorControlAppearanceStyle nSeparatorAppearance = XtremeCommandBars.XTPBackstageSeparatorControlAppearanceStyle.xtpSeparatorAppearanceResource;</div><div><br></div><div>&nbsp; &nbsp; switch (CommandBars.VisualTheme)</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; case XtremeCommandBars.XTPVisualTheme.xtpThemeOffice2013:</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; nButtonAppearance = XtremeCommandBars.XTPBackstageButtonControlAppearanceStyle.xtpAppearanceOffice2013;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; nSeparatorAppearance = XtremeCommandBars.XTPBackstageSeparatorControlAppearanceStyle.xtpSeparatorAppearanceOffice2013;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; case XtremeCommandBars.XTPVisualTheme.xtpThemeVisualStudio2015:</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; nButtonAppearance = XtremeCommandBars.XTPBackstageButtonControlAppearanceStyle.xtpAppearanceVisualStudio2015;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; nSeparatorAppearance = XtremeCommandBars.XTPBackstageSeparatorControlAppearanceStyle.xtpSeparatorAppearanceVisualStudio2015;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; default:</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; nButtonAppearance = XtremeCommandBars.XTPBackstageButtonControlAppearanceStyle.xtpAppearanceResource;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; nSeparatorAppearance = XtremeCommandBars.XTPBackstageSeparatorControlAppearanceStyle.xtpSeparatorAppearanceResource;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;</div><div>&nbsp; &nbsp; }</div><div><br></div><div>&nbsp; &nbsp; BackstageView.SetTheme(CommandBars.VisualTheme);</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; Color clrText = ColorFromUint( <b>BackstageView.GetForeColor</b>() );</div><div>&nbsp; &nbsp; Color clrBack = ColorFromUint( <b>BackstageView.GetBackColor</b>() );</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; pageBackstageInfo.<b><font color="#00cc00">SetAppearance</font></b>(CommandBars.VisualTheme, nButtonAppearance, nSeparatorAppearance, clrText, clrBack);</div><div>&nbsp; &nbsp; pageBackstageHelp.<b><font color="#00cc00">SetAppearance</font></b>(CommandBars.VisualTheme, nButtonAppearance, nSeparatorAppearance, clrText, clrBack);</div><div>&nbsp; &nbsp; pageBackstageSend.<b><font color="#00cc00">SetAppearance</font></b>(CommandBars.VisualTheme, nButtonAppearance, nSeparatorAppearance, clrText, clrBack);</div><div>&nbsp; &nbsp; pageBackstageRecent.<b><font color="#00cc00">SetAppearance</font></b>(CommandBars.VisualTheme, nButtonAppearance, nSeparatorAppearance, clrText, clrBack);</div><div>&nbsp; &nbsp; pageBackstageDisabled.<b><font color="#00cc00">SetAppearance</font></b>(CommandBars.VisualTheme, nButtonAppearance, nSeparatorAppearance, clrText, clrBack);</div><div>}</div><div><br></div><div>// <b>pageBackstageSend.cs</b></div><div>public void <b><font color="#00cc00">SetAppearance</font></b>(XtremeCommandBars.XTPVisualTheme theme, XtremeCommandBars.XTPBackstageButtonControlAppearanceStyle nButtonAppearance,</div><div>&nbsp; &nbsp; XtremeCommandBars.XTPBackstageSeparatorControlAppearanceStyle nSeparatorAppearance, Color clrText, Color clrBack)</div><div>{</div><div>&nbsp; &nbsp; this.ForeColor = clrText;</div><div>&nbsp; &nbsp; this.BackColor = clrBack;</div><div><br></div><div>&nbsp; &nbsp; BackstageButton1.Appearance = nButtonAppearance;</div><div>&nbsp; &nbsp; BackstageButton2.Appearance = nButtonAppearance;</div><div>&nbsp; &nbsp; btnManageVersions.Appearance = nButtonAppearance;</div><div>&nbsp; &nbsp; btnProtectDocument.Appearance = nButtonAppearance;</div><div><br></div><div>&nbsp; &nbsp; BackstageButton1.ForeColor = clrText;</div><div>&nbsp; &nbsp; BackstageButton1.BackColor = clrBack;</div><div>&nbsp; &nbsp; BackstageButton2.ForeColor = clrText;</div><div>&nbsp; &nbsp; BackstageButton2.BackColor = clrBack;&nbsp; &nbsp;&nbsp;</div><div>..............</div><div><br></div><div>&nbsp; &nbsp; BackstageButton1.TextImageRelation = XtremeCommandBars.TextImageRelationStyle.xtpImageAboveText;</div><div>&nbsp; &nbsp; BackstageButton2.TextImageRelation = XtremeCommandBars.TextImageRelationStyle.xtpImageAboveText;</div><div><br></div><div>&nbsp; &nbsp; btnTab_0.Appearance = nButtonAppearance;</div><div>&nbsp; &nbsp; btnTab_1.Appearance = nButtonAppearance;&nbsp; &nbsp;&nbsp;</div><div>..............</div><div><br></div><div>&nbsp; &nbsp; btnTab_0.ForeColor = clrText;</div><div>&nbsp; &nbsp; btnTab_0.BackColor = clrBack;&nbsp; &nbsp;&nbsp;</div><div>..............</div><div><br></div><div>&nbsp; &nbsp; lblBackstageSeparator1.Appearance = nSeparatorAppearance;</div><div>&nbsp; &nbsp; lblBackstageSeparator4.Appearance = nSeparatorAppearance;</div><div><br></div><div>&nbsp; &nbsp; BackstageSeparator1.Appearance = nSeparatorAppearance;</div><div>&nbsp; &nbsp; BackstageSeparator2.Appearance = nSeparatorAppearance;&nbsp; &nbsp;&nbsp;</div><div>..............</div><div>&nbsp; &nbsp;&nbsp;</div><div>&nbsp; &nbsp; Label1.ForeColor = clrText;</div><div>&nbsp; &nbsp; Label1.BackColor = clrBack;</div><div>&nbsp; &nbsp; Label2.ForeColor = clrText;</div><div>&nbsp; &nbsp; Label2.BackColor = clrBack;&nbsp; &nbsp;&nbsp;</div><div>..............</div><div><br></div><div>&nbsp; &nbsp; tabPage_0.ForeColor = clrText;</div><div>&nbsp; &nbsp; tabPage_0.BackColor = clrBack;&nbsp; &nbsp;&nbsp;</div><div>..............</div><div><br></div>}</pre></td></tr></table><br>Regards,<br>&nbsp;Oleksandr Lebed]]>
   </description>
   <pubDate>Fri, 19 Jan 2018 11:42:36 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=23400&amp;PID=76490&amp;title=version-18-ribbon-office-2016-theme#76490</guid>
  </item> 
  <item>
   <title><![CDATA[Version 18 Ribbon Office 2016 Theme : I use the backstage buttons in...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=23400&amp;PID=76488&amp;title=version-18-ribbon-office-2016-theme#76488</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=9223">Fritzchen</a><br /><strong>Subject:</strong> 23400<br /><strong>Posted:</strong> 18 January 2018 at 4:26pm<br /><br />I use the backstage buttons in my application also outside of the backstage.<br /><br />So that the buttons always take on the same color as the color theme (Office2016. dll), I use the following:<br /><br />Here's where I give the main theme:<br />BackstageButton.Appearance = xtpAppearanceOffice2013<br /><br />'Here the background color (I need the buttons e. g. in white):<br />BackstageButton.BackColor = RGB(255, 255, 255)<br /><br />'And here the font color.<br />BackstageButton.ForeColor = strThemeFontColor<br /><br />'--------------------------------------------<br /><br />Fill the variable "strThemeFontColor" with the corresponding font color when changing the theme.<br /><br /><br />Case ID_THEME_01: strStyleINI = "Office2016WordColorful.ini"<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;strThemeFontColor = RGB(42, 87, 154)<br /><br />Case ID_THEME_02: strStyleINI = "Office2016OutlookColorful.ini"<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;strThemeFontColor = RGB(1, 115, 199)<br /><br />Case ID_THEME_03: strStyleINI = "Office2016PublisherColorful.ini"<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;strThemeFontColor = RGB(7, 117, 104)<br /><br />Case ID_THEME_04: strStyleINI = "Office2016ExcelColorful.ini"<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;strThemeFontColor = RGB(34, 116, 71)<br /><br />Case ID_THEME_05: strStyleINI = "Office2016PowerpointColorful.ini"<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;strThemeFontColor = RGB(183, 71, 42)<br /><br />Case ID_THEME_06: strStyleINI = "Office2016AccessColorful.ini"<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;strThemeFontColor = RGB(164, 55, 58)<br /><br />Case ID_THEME_07: strStyleINI = "Office2016OnenoteColorful.ini"<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;strThemeFontColor = RGB(128, 57, 123)<br /><br />This method may be unconventional but it works  <img src="http://forum.codejock.com/smileys/smiley2.gif" border="0" align="middle" /><br />Maybe this will help you.<br /><br />Many greetings<br /><br />Fritzchen<br /><br /><img src="uploads/9223/screen1.png" border="0" /><br /><br /><img src="uploads/9223/screen2.png" border="0" />]]>
   </description>
   <pubDate>Thu, 18 Jan 2018 16:26:37 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=23400&amp;PID=76488&amp;title=version-18-ribbon-office-2016-theme#76488</guid>
  </item> 
  <item>
   <title><![CDATA[Version 18 Ribbon Office 2016 Theme : I&amp;#039;m using the Office 2016...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=23400&amp;PID=76486&amp;title=version-18-ribbon-office-2016-theme#76486</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=7570">Nick</a><br /><strong>Subject:</strong> 23400<br /><strong>Posted:</strong> 18 January 2018 at 11:17am<br /><br />I'm using the Office 2016 dll's as suggested, and this works fine for the ribbon bar.&nbsp; But I can't get the backstage buttons and recent file list controls to adopt the Office 2016 theme.&nbsp; How do I get this to work?<br>]]>
   </description>
   <pubDate>Thu, 18 Jan 2018 11:17:25 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=23400&amp;PID=76486&amp;title=version-18-ribbon-office-2016-theme#76486</guid>
  </item> 
  <item>
   <title><![CDATA[Version 18 Ribbon Office 2016 Theme : unfortunately we don&amp;#039;t have...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=23400&amp;PID=76026&amp;title=version-18-ribbon-office-2016-theme#76026</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=8730">olebed</a><br /><strong>Subject:</strong> 23400<br /><strong>Posted:</strong> 11 August 2017 at 6:42am<br /><br />unfortunately we don't have such skin.]]>
   </description>
   <pubDate>Fri, 11 Aug 2017 06:42:13 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=23400&amp;PID=76026&amp;title=version-18-ribbon-office-2016-theme#76026</guid>
  </item> 
  <item>
   <title><![CDATA[Version 18 Ribbon Office 2016 Theme : Exist there also an Windows10...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=23400&amp;PID=76025&amp;title=version-18-ribbon-office-2016-theme#76025</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=8680">Harry75</a><br /><strong>Subject:</strong> 23400<br /><strong>Posted:</strong> 11 August 2017 at 4:56am<br /><br />Exist there also an Windows10 cjstyle ?]]>
   </description>
   <pubDate>Fri, 11 Aug 2017 04:56:59 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=23400&amp;PID=76025&amp;title=version-18-ribbon-office-2016-theme#76025</guid>
  </item> 
  <item>
   <title><![CDATA[Version 18 Ribbon Office 2016 Theme : Hello Harry1975,If you load Office2016.dll...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=23400&amp;PID=75989&amp;title=version-18-ribbon-office-2016-theme#75989</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=8730">olebed</a><br /><strong>Subject:</strong> 23400<br /><strong>Posted:</strong> 02 August 2017 at 12:08pm<br /><br />Hello Harry1975,<br><br>If you load Office2016.dll as CommandBars theme &nbsp;then Backstage also will get resources from Office2016.<br>If you ask about &nbsp;fullscreen Backstage in ActiveX - you can set&nbsp;<table width="99%"><tr><td><pre class="BBcode">BackstageView.SetTheme <b>17</b> &nbsp;'show new fullscreen backstage</pre></td></tr></table><br><b>17</b> is xtpThemeOffice2016, but unfortunately we haven't added it to ActiveX version. Now we are working on improving &nbsp;switching between old backstage and new fullscreen version. So it is temporary solution.<br><br>Regards,<br>&nbsp;Oleksandr Lebed]]>
   </description>
   <pubDate>Wed, 02 Aug 2017 12:08:17 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=23400&amp;PID=75989&amp;title=version-18-ribbon-office-2016-theme#75989</guid>
  </item> 
  <item>
   <title><![CDATA[Version 18 Ribbon Office 2016 Theme : Exist there an example for the...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=23400&amp;PID=75981&amp;title=version-18-ribbon-office-2016-theme#75981</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=9181">Harry1975</a><br /><strong>Subject:</strong> 23400<br /><strong>Posted:</strong> 01 August 2017 at 2:59pm<br /><br />Exist there an example for the Office 2016 Backstage ?]]>
   </description>
   <pubDate>Tue, 01 Aug 2017 14:59:35 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=23400&amp;PID=75981&amp;title=version-18-ribbon-office-2016-theme#75981</guid>
  </item> 
 </channel>
</rss>