<?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 : [solved] Ribbon &quot;LoadCommandBars&quot; bug</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Command Bars : [solved] Ribbon &quot;LoadCommandBars&quot; bug]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 13 May 2026 02:59:33 +0000</pubDate>
  <lastBuildDate>Fri, 10 Feb 2017 02:50:31 +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=23212</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[[solved] Ribbon &quot;LoadCommandBars&quot; bug : Hi,Thank you for your response....]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=23212&amp;PID=75550&amp;title=solved-ribbon-loadcommandbars-bug#75550</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=8143">hiro-ta</a><br /><strong>Subject:</strong> 23212<br /><strong>Posted:</strong> 10 February 2017 at 2:50am<br /><br /><span style=": rgb248, 248, 252;">Hi,&nbsp;</span><div style=": rgb248, 248, 252;">Thank you for your response. It works well.</div><div style=": rgb248, 248, 252;">Problem solved.</div>]]>
   </description>
   <pubDate>Fri, 10 Feb 2017 02:50:31 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=23212&amp;PID=75550&amp;title=solved-ribbon-loadcommandbars-bug#75550</guid>
  </item> 
  <item>
   <title><![CDATA[[solved] Ribbon &quot;LoadCommandBars&quot; bug : also similar fix inCXTPControl...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=23212&amp;PID=75539&amp;title=solved-ribbon-loadcommandbars-bug#75539</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=8730">olebed</a><br /><strong>Subject:</strong> 23212<br /><strong>Posted:</strong> 07 February 2017 at 4:47am<br /><br />also similar fix in&nbsp;<span style="font-family: &quot;Courier New&quot;, Courier, mono; line-height: 16.8px; : rgb244, 244, 251;">CXTPControlComboBox::DoPropExchange</span><span style="line-height: 1.4;">&nbsp;<table width="99%"><tr><td><pre class="BBcode">void CXTPControlComboBox::DoPropExchange(CXTPPropExchange* pPX)</span><br><div>{</div><div>&nbsp; &nbsp; CXTPControlPopup::DoPropExchange(pPX);</div><div><br></div><div>&nbsp; &nbsp; PX_Bool(pPX, _T("DropDown"), m_bDropDown, TRUE);</div><div><b><font color="#cc0000">// &nbsp; &nbsp;PX_DPI_X_Int(pPX, _T("Width"), m_nWidth, 0);</font></b></div><div>&nbsp; &nbsp; PX_Enum(pPX, _T("ComboStyle"), m_comboStyle, xtpComboNormal);</div><div>...</div></pre></td></tr></table>]]>
   </description>
   <pubDate>Tue, 07 Feb 2017 04:47:15 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=23212&amp;PID=75539&amp;title=solved-ribbon-loadcommandbars-bug#75539</guid>
  </item> 
  <item>
   <title><![CDATA[[solved] Ribbon &quot;LoadCommandBars&quot; bug : The same with methodsPX_DPI_Size,PX_DPI_Point...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=23212&amp;PID=75538&amp;title=solved-ribbon-loadcommandbars-bug#75538</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=8730">olebed</a><br /><strong>Subject:</strong> 23212<br /><strong>Posted:</strong> 07 February 2017 at 4:42am<br /><br />The same with methods&nbsp;PX_DPI_Size,&nbsp;PX_DPI_Point and&nbsp;PX_DPI_Rect<br><table width="99%"><tr><td><pre class="BBcode">BOOL AFX_CDECL PX_DPI_Size(CXTPPropExchange* pPX, LPCTSTR pszPropName, SIZE&amp; szValue, SIZE szDefault)<div>{</div><div>&nbsp; &nbsp; ASSERT_POINTER(pPX, CXTPPropExchange);</div><div>&nbsp; &nbsp; if (!pPX)</div><div>&nbsp; &nbsp; &nbsp; &nbsp; return FALSE;</div><div><br></div><div>&nbsp; &nbsp; BOOL bResult;</div><div>&nbsp; &nbsp; <b><font color="#00cc00">SIZE szTempValue;</font></b></div><div>&nbsp; &nbsp; if (pPX-&gt;IsLoading())</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; bResult = pPX-&gt;ExchangeProp(pszPropName, VT_EX_SIZE, &amp;<b><font color="#00cc00">szTempValue</font></b>, &amp;szDefault);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; if (bResult)</div><div>&nbsp; &nbsp; &nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; szValue = XTP_DPI(<b><font color="#00cc00">szTempValue</font></b>);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; }</div><div>&nbsp; &nbsp; else</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; <b><font color="#00cc00">szTempValue </font></b>= XTP_UNDPI(szValue);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; bResult = pPX-&gt;ExchangeProp(pszPropName, VT_EX_SIZE, &amp;<font color="#00cc00"><b>szTempValue</b></font>, &amp;szDefault);</div><div>&nbsp; &nbsp; }</div><div><br></div><div>&nbsp; &nbsp; return bResult;</div><div>}</div><div><br></div><div>BOOL AFX_CDECL PX_DPI_Point(CXTPPropExchange* pPX, LPCTSTR pszPropName, POINT&amp; ptValue, POINT ptDefault)</div><div>{</div><div>&nbsp; &nbsp; ASSERT_POINTER(pPX, CXTPPropExchange);</div><div>&nbsp; &nbsp; ASSERT(sizeof(POINT) == sizeof(SIZE));</div><div>&nbsp; &nbsp; if (!pPX)</div><div>&nbsp; &nbsp; &nbsp; &nbsp; return FALSE;</div><div><br></div><div>&nbsp; &nbsp; BOOL bResult;</div><div>&nbsp; &nbsp; <b><font color="#00cc00">POINT ptTempValue;</font></b></div><div>&nbsp; &nbsp; if (pPX-&gt;IsLoading())</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; bResult = pPX-&gt;ExchangeProp(pszPropName, VT_EX_SIZE, &amp;<b><font color="#00cc00">ptTempValue</font></b>, &amp;ptDefault);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; if (bResult)</div><div>&nbsp; &nbsp; &nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ptValue = XTP_DPI(<b><font color="#00cc00">ptTempValue</font></b>);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; }</div><div>&nbsp; &nbsp; else</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; <font color="#00cc00"><b>ptTempValue </b></font>= XTP_UNDPI(ptValue);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; bResult = pPX-&gt;ExchangeProp(pszPropName, VT_EX_SIZE, &amp;<b><font color="#00cc00">ptTempValue</font></b>, &amp;ptDefault);</div><div>&nbsp; &nbsp; }</div><div><br></div><div>&nbsp; &nbsp; return bResult;</div><div>}</div><div><br></div><div>BOOL AFX_CDECL PX_DPI_Rect(CXTPPropExchange* pPX, LPCTSTR pszPropName, RECT&amp; rcValue, RECT rcDefault)</div><div>{</div><div>&nbsp; &nbsp; ASSERT_POINTER(pPX, CXTPPropExchange);</div><div>&nbsp; &nbsp; if (!pPX)</div><div>&nbsp; &nbsp; &nbsp; &nbsp; return FALSE;</div><div><br></div><div>&nbsp; &nbsp; BOOL bResult;</div><div>&nbsp; &nbsp; <b><font color="#00cc00">RECT rcTempValue;</font></b></div><div>&nbsp; &nbsp; if (pPX-&gt;IsLoading())</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; bResult = pPX-&gt;ExchangeProp(pszPropName, VT_EX_RECT, &amp;<b><font color="#00cc00">rcTempValue</font></b>, &amp;rcDefault);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; if (bResult)</div><div>&nbsp; &nbsp; &nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; rcValue = XTP_DPI(<b><font color="#00cc00">rcTempValue</font></b>);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; }</div><div>&nbsp; &nbsp; else</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; if (CW_USEDEFAULT != rcValue.left&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; || CW_USEDEFAULT != rcValue.top&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; || CW_USEDEFAULT != rcValue.right&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; || CW_USEDEFAULT != rcValue.bottom)&nbsp;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <font color="#00cc00"><b>rcTempValue </b></font>= XTP_UNDPI(rcValue);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; }</div><div><b><font color="#00cc00">&nbsp; &nbsp; &nbsp; &nbsp; else</font></b></div><div><b><font color="#00cc00">&nbsp; &nbsp; &nbsp; &nbsp; {</font></b></div><div><b><font color="#00cc00">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; rcTempValue = rcValue;</font></b></div><div><b><font color="#00cc00">&nbsp; &nbsp; &nbsp; &nbsp; }</font></b></div><div><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; bResult = pPX-&gt;ExchangeProp(pszPropName, VT_EX_RECT, &amp;<font color="#00cc00"><b>rcTempValue</b></font>, &amp;rcDefault);</div><div>&nbsp; &nbsp; }</div><div><br></div><div>&nbsp; &nbsp; return bResult;</div>}</pre></td></tr></table>]]>
   </description>
   <pubDate>Tue, 07 Feb 2017 04:42:04 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=23212&amp;PID=75538&amp;title=solved-ribbon-loadcommandbars-bug#75538</guid>
  </item> 
  <item>
   <title><![CDATA[[solved] Ribbon &quot;LoadCommandBars&quot; bug : Hello,I&amp;#039;m glad to inform...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=23212&amp;PID=75537&amp;title=solved-ribbon-loadcommandbars-bug#75537</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=8730">olebed</a><br /><strong>Subject:</strong> 23212<br /><strong>Posted:</strong> 07 February 2017 at 3:37am<br /><br />Hello,<br><br>I'm glad to inform you about solution.<br>The changes in file &nbsp;Source\Common\XTPPropExchange.cpp<br><table width="99%"><tr><td><pre class="BBcode">BOOL AFX_CDECL PX_DPI_X_Int(CXTPPropExchange* pPX, LPCTSTR pszPropName, int&amp; nValue)<div>{</div><div>&nbsp; &nbsp; ASSERT_POINTER(pPX, CXTPPropExchange);</div><div>&nbsp; &nbsp; ASSERT_POINTER(&amp;nValue, int);</div><div>&nbsp; &nbsp; if (!pPX)</div><div>&nbsp; &nbsp; &nbsp; &nbsp; return FALSE;</div><div><br></div><div>&nbsp; &nbsp; BOOL bResult;</div><div>&nbsp; &nbsp; <font color="#00cc00"><b>int val;</b></font></div><div>&nbsp; &nbsp; if (pPX-&gt;IsLoading())</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; bResult = pPX-&gt;ExchangeProp(pszPropName, VT_I4, &amp;<font color="#00cc00"><b>val</b></font>);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; if (bResult)</div><div>&nbsp; &nbsp; &nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; nValue = XTP_DPI_X(<font color="#00cc00"><b>val</b></font>);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; }</div><div>&nbsp; &nbsp; else</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; <font color="#00cc00"><b>val</b> </font>= XTP_UNDPI_X(nValue);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; bResult = pPX-&gt;ExchangeProp(pszPropName, VT_I4, &amp;<b><font color="#00cc00">val</font></b>);</div><div>&nbsp; &nbsp; }</div><div><br></div><div>&nbsp; &nbsp; return bResult;</div><div>}</div><div><br></div><div>BOOL AFX_CDECL PX_DPI_X_Int(CXTPPropExchange* pPX, LPCTSTR pszPropName, int&amp; nValue,</div><div>&nbsp; &nbsp; int nDefault)</div><div>{</div><div>&nbsp; &nbsp; ASSERT_POINTER(pPX, CXTPPropExchange);</div><div>&nbsp; &nbsp; ASSERT_POINTER(&amp;nValue, int);</div><div>&nbsp; &nbsp; if (!pPX)</div><div>&nbsp; &nbsp; &nbsp; &nbsp; return FALSE;</div><div><br></div><div>&nbsp; &nbsp; BOOL bResult;</div><div>&nbsp; &nbsp; <b><font color="#00cc00">int val;</font></b></div><div>&nbsp; &nbsp; if (pPX-&gt;IsLoading())</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; bResult = pPX-&gt;ExchangeProp(pszPropName, VT_I4, &amp;<font color="#00cc00"><b>val</b></font>, &amp;nDefault);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; if (bResult)</div><div>&nbsp; &nbsp; &nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; nValue = XTP_DPI_X(<b><font color="#00cc00">val</font></b>);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; }</div><div>&nbsp; &nbsp; else</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; <font color="#00cc00"><b>val </b></font>= XTP_UNDPI_X(nValue);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; bResult = pPX-&gt;ExchangeProp(pszPropName, VT_I4, &amp;<b><font color="#00cc00">val</font></b>);</div><div>&nbsp; &nbsp; }</div><div><br></div><div>&nbsp; &nbsp; return bResult;</div><div>}</div><div><br></div><div>BOOL AFX_CDECL PX_DPI_Y_Int(CXTPPropExchange* pPX, LPCTSTR pszPropName, int&amp; nValue)</div><div>{</div><div>&nbsp; &nbsp; ASSERT_POINTER(pPX, CXTPPropExchange);</div><div>&nbsp; &nbsp; ASSERT_POINTER(&amp;nValue, int);</div><div>&nbsp; &nbsp; if (!pPX)</div><div>&nbsp; &nbsp; &nbsp; &nbsp; return FALSE;</div><div><br></div><div>&nbsp; &nbsp; BOOL bResult;</div><div>&nbsp; &nbsp; <b><font color="#00cc00">int val;</font></b></div><div>&nbsp; &nbsp; if (pPX-&gt;IsLoading())</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; bResult = pPX-&gt;ExchangeProp(pszPropName, VT_I4, &amp;<b><font color="#00cc00">val</font></b>);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; if (bResult)</div><div>&nbsp; &nbsp; &nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; nValue = XTP_DPI_Y(<b><font color="#00cc00">val</font></b>);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; }</div><div>&nbsp; &nbsp; else</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; <b><font color="#00cc00">val </font></b>= XTP_UNDPI_Y(nValue);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; bResult = pPX-&gt;ExchangeProp(pszPropName, VT_I4, &amp;<b><font color="#00cc00">val</font></b>);</div><div>&nbsp; &nbsp; }</div><div><br></div><div>&nbsp; &nbsp; return bResult;</div><div>}</div><div><br></div><div>BOOL AFX_CDECL PX_DPI_Y_Int(CXTPPropExchange* pPX, LPCTSTR pszPropName, int&amp; nValue,</div><div>&nbsp; &nbsp; int nDefault)</div><div>{</div><div>&nbsp; &nbsp; ASSERT_POINTER(pPX, CXTPPropExchange);</div><div>&nbsp; &nbsp; ASSERT_POINTER(&amp;nValue, int);</div><div>&nbsp; &nbsp; if (!pPX)</div><div>&nbsp; &nbsp; &nbsp; &nbsp; return FALSE;</div><div><br></div><div>&nbsp; &nbsp; BOOL bResult;</div><div>&nbsp; <b><font color="#00cc00">&nbsp; int val;</font></b></div><div>&nbsp; &nbsp; if (pPX-&gt;IsLoading())</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; bResult = pPX-&gt;ExchangeProp(pszPropName, VT_I4, &amp;<b><font color="#00cc00">val</font></b>, &amp;nDefault);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; if (bResult)</div><div>&nbsp; &nbsp; &nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; nValue = XTP_DPI_Y(<b><font color="#00cc00">val</font></b>);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; }</div><div>&nbsp; &nbsp; }</div><div>&nbsp; &nbsp; else</div><div>&nbsp; &nbsp; {</div><div>&nbsp; &nbsp; &nbsp; &nbsp; <b><font color="#00cc00">val </font></b>= XTP_UNDPI_Y(nValue);</div><div>&nbsp; &nbsp; &nbsp; &nbsp; bResult = pPX-&gt;ExchangeProp(pszPropName, VT_I4, &amp;<b><font color="#00cc00">val</font></b>);</div><div>&nbsp; &nbsp; }</div><div><br></div><div>&nbsp; &nbsp; return bResult;</div>}</pre></td></tr></table><br><br>Fix will be available in next v18.0.<br><br>Regards,<br>&nbsp;Oleksanrd Lebed]]>
   </description>
   <pubDate>Tue, 07 Feb 2017 03:37:57 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=23212&amp;PID=75537&amp;title=solved-ribbon-loadcommandbars-bug#75537</guid>
  </item> 
  <item>
   <title><![CDATA[[solved] Ribbon &quot;LoadCommandBars&quot; bug : This problem is occurring among...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=23212&amp;PID=75534&amp;title=solved-ribbon-loadcommandbars-bug#75534</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=8143">hiro-ta</a><br /><strong>Subject:</strong> 23212<br /><strong>Posted:</strong> 06 February 2017 at 3:12am<br /><br />This problem is occurring among many users. I'm worried.<div>I want you to fix it soon.</div>]]>
   </description>
   <pubDate>Mon, 06 Feb 2017 03:12:12 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=23212&amp;PID=75534&amp;title=solved-ribbon-loadcommandbars-bug#75534</guid>
  </item> 
  <item>
   <title><![CDATA[[solved] Ribbon &quot;LoadCommandBars&quot; bug : Hellomoser@dsd.at,If solution...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=23212&amp;PID=75513&amp;title=solved-ribbon-loadcommandbars-bug#75513</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=8730">olebed</a><br /><strong>Subject:</strong> 23212<br /><strong>Posted:</strong> 23 January 2017 at 9:50pm<br /><br />Hello&nbsp;<span style="line-height: 16.8px; : rgb240, 241, 245;">moser@dsd.at,<br><br>If solution is easy I will write it here. We added this task for next release - v18.0.<br><br>Regards,<br>&nbsp;Oleksandr Lebed</span>]]>
   </description>
   <pubDate>Mon, 23 Jan 2017 21:50:57 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=23212&amp;PID=75513&amp;title=solved-ribbon-loadcommandbars-bug#75513</guid>
  </item> 
  <item>
   <title><![CDATA[[solved] Ribbon &quot;LoadCommandBars&quot; bug : I have the same problem and want...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=23212&amp;PID=75512&amp;title=solved-ribbon-loadcommandbars-bug#75512</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3415">moser@dsd.at</a><br /><strong>Subject:</strong> 23212<br /><strong>Posted:</strong> 23 January 2017 at 4:23pm<br /><br />I have the same problem and want to use version 17.3 but we need this issue fixed. Can you tell me when we can expect a solution for this problem ? Is there a workaround without loosing the ability to save customized command bars ?<br />]]>
   </description>
   <pubDate>Mon, 23 Jan 2017 16:23:52 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=23212&amp;PID=75512&amp;title=solved-ribbon-loadcommandbars-bug#75512</guid>
  </item> 
  <item>
   <title><![CDATA[[solved] Ribbon &quot;LoadCommandBars&quot; bug : Hello,Thank you to bringing this...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=23212&amp;PID=75387&amp;title=solved-ribbon-loadcommandbars-bug#75387</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=8730">olebed</a><br /><strong>Subject:</strong> 23212<br /><strong>Posted:</strong> 29 November 2016 at 12:34pm<br /><br />Hello,<br><br>Thank you to bringing this to our attention. I can reproduce this also with Visual Studio 2015 and 125% DPI. I will try to fix.<br><br>Regards,<br>&nbsp;Oleksandr Lebed]]>
   </description>
   <pubDate>Tue, 29 Nov 2016 12:34:47 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=23212&amp;PID=75387&amp;title=solved-ribbon-loadcommandbars-bug#75387</guid>
  </item> 
  <item>
   <title><![CDATA[[solved] Ribbon &quot;LoadCommandBars&quot; bug : Hi,If you call &amp;#034;LoadCommandBars&amp;#034;...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=23212&amp;PID=75377&amp;title=solved-ribbon-loadcommandbars-bug#75377</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=8143">hiro-ta</a><br /><strong>Subject:</strong> 23212<br /><strong>Posted:</strong> 28 November 2016 at 2:13am<br /><br /><div>Hi,</div><div><div>If you call "LoadCommandBars" or "SaveCommandBars" with the display scaling set to 150%, the ribbon display will be buggy.（See attached image)</div><div><div><br></div><div>●How to reproduce</div><div><br></div><div><span style=": rgb248, 248, 252;">1. Please set Windows "display scaling" to 150%</span></div><div><br></div><div>2. Open the project "RibbonSample" at VisualStudio 2010.</div><div><br></div><div>3.&nbsp;Call "LoadCommandBars" on "CMainFrame::OnCreate()" and Call "SaveCommandBars" on "CMainFrame::OnClose()"</div></div></div><div><div style=": rgb248, 248, 252;"><t></t><t></t><t></t><table width="99%"><t><tr><td><pre ="bbcode"="" style="width: 943.25px;"><blockquote style="margin: 0px 0px 0px 40px; border: n&#111;ne; padding: 0px;"><div style="font-family: Verdana, Arial, Helvetica, sans-serif; white-space: normal;">int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)</div><div style="font-family: Verdana, Arial, Helvetica, sans-serif; white-space: normal;">{</div><div style="font-family: Verdana, Arial, Helvetica, sans-serif; white-space: normal;">&nbsp; &nbsp; &nbsp; &nbsp;:</div><div style="font-family: Verdana, Arial, Helvetica, sans-serif; white-space: normal;"><span ="apple-tab-span"="" style="white-space: pre;">	</span>LoadCommandBars(_PROFILE_NAME);</div><div style="font-family: Verdana, Arial, Helvetica, sans-serif; white-space: normal;">&nbsp; &nbsp; &nbsp; &nbsp;:</div><div style="font-family: Verdana, Arial, Helvetica, sans-serif; white-space: normal;">}</div><div style="font-family: Verdana, Arial, Helvetica, sans-serif; white-space: normal;"><br></div><div><div><font face="Verdana, Arial, Helvetica, sans-serif"><span style="white-space: normal;">void CMainFrame::OnClose()&nbsp;</span></font></div><div><font face="Verdana, Arial, Helvetica, sans-serif"><span style="white-space: normal;">{</span></font></div><div><span ="apple-tab-span"="" style="font-family: Verdana, Arial, Helvetica, sans-serif;">	</span><span style="font-family: Verdana, Arial, Helvetica, sans-serif;">SaveCommandBars(_PROFILE_NAME);</span></div></div><div><span style="font-family: Verdana, Arial, Helvetica, sans-serif;">        :</span></div><div><span style="font-family: Verdana, Arial, Helvetica, sans-serif;">}</span></div></blockquote></pre></td></tr></t></table></div></div><blockquote style="margin: 0 0 0 40px; border: n&#111;ne; padding: 0px;"><div><div><div><div><br></div></div></div></div></blockquote>4.Build and start.<div><br></div><div>5.Repeat start and exit.<br><div><br></div><div>6.Although it is normally displayed at the first startup, it is strange after the second time.（See attached image)</div><div><br></div><div>#It might only be reproduced on Japanese version Windows.</div><div><br></div><div><img src="uploads/8143/ribb&#111;n_bug.png" height="627" width="707" border="0" /><br></div><div><br></div><div><br></div><div><br></div><div><div><div><img src="uploads/8143/ribb&#111;n_bug2.png" height="272" width="821" border="0" /><br></div><div><br></div><div><t></t><t></t><t></t><table ="tableborder"="" align="center" cellspacing="1" cellpadding="3" style="width: 1862px; color: rgb0, 0, 0; font-size: 12px; table-layout: fixed;"><t><tr ="msgoddtablerow"=""><td ="msglinedevider"=""><div ="msgsignature"="" style="width: 1707px;">Product: Xtreme ToolkitPro (17.3.0)&nbsp;<br>Platform: Windows 7/8.1/10 Japanese (x64)<br>Language: Visual Studio 2010 (C++)&nbsp;</div></td></tr><tr ="postseparatortablerow"=""></tr></t></table><br></div></div></div></div>]]>
   </description>
   <pubDate>Mon, 28 Nov 2016 02:13:31 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=23212&amp;PID=75377&amp;title=solved-ribbon-loadcommandbars-bug#75377</guid>
  </item> 
 </channel>
</rss>