<?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 : Toolkit Pro</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Toolkit Pro : Last 10 Posts]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 22 Jul 2026 15:10:22 +0000</pubDate>
  <lastBuildDate>Wed, 15 Jul 2026 03:20:00 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.04</generator>
  <ttl>30</ttl>
  <WebWizForums:feedURL>forum.codejock.com/RSS_topic_feed.asp?FID=112</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[Toolkit Pro : Toolset update]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=24643&amp;PID=79421&amp;title=toolset-update#79421</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=451">Heath</a><br /><strong>Subject:</strong> Toolset update<br /><strong>Posted:</strong> 15 July 2026 at 3:20am<br /><br />It's frustrating as in April we were told the next release was due "soon" to support VS 2026.<div><br></div><div>I'd rather Codejock support the latest VS versions faster than delay a release to add massive new features.</div>]]>
   </description>
   <pubDate>Wed, 15 Jul 2026 03:20:00 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=24643&amp;PID=79421&amp;title=toolset-update#79421</guid>
  </item> 
  <item>
   <title><![CDATA[Toolkit Pro : Toolset update]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=24643&amp;PID=79416&amp;title=toolset-update#79416</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=66">zaksoft</a><br /><strong>Subject:</strong> Toolset update<br /><strong>Posted:</strong> 23 June 2026 at 2:33pm<br /><br /><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Originally posted by jw_statica" alt="Originally posted by jw_statica" style="vertical-align: text-bottom;" /> <strong>jw_statica wrote:</strong><br /><br />Can you tell us (approximately) when the new version will be released?</td></tr></table><div><br></div><div>I's very important also for us, we have to plan 2026 porting.</div><div><br></div><div>TIA</div><div><br></div><div>Davide</div>]]>
   </description>
   <pubDate>Tue, 23 Jun 2026 14:33:32 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=24643&amp;PID=79416&amp;title=toolset-update#79416</guid>
  </item> 
  <item>
   <title><![CDATA[Toolkit Pro : Toolset update]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=24643&amp;PID=79415&amp;title=toolset-update#79415</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=9273">jw_statica</a><br /><strong>Subject:</strong> Toolset update<br /><strong>Posted:</strong> 23 June 2026 at 10:40am<br /><br />Can you tell us (approximately) when the new version will be released?]]>
   </description>
   <pubDate>Tue, 23 Jun 2026 10:40:55 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=24643&amp;PID=79415&amp;title=toolset-update#79415</guid>
  </item> 
  <item>
   <title><![CDATA[Toolkit Pro : Memory bug in XTPMarkupStatic]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=24646&amp;PID=79414&amp;title=memory-bug-in-xtpmarkupstatic#79414</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2876">DavidH</a><br /><strong>Subject:</strong> Memory bug in XTPMarkupStatic<br /><strong>Posted:</strong> 15 June 2026 at 4:08pm<br /><br /><div>In Source/Controls/Static/XTPMarkupStatic.cpp, a growing buffer is not reallocated correctly.</div><div><br></div><div><font face="Courier New, Courier, mono">template&lt;class T&gt;<br>AFX_INLINE BOOL XTPStrPushChr(T*&amp; pStr, T ch, SIZE_T&amp; nPos, SIZE_T&amp; nSize)<br>{<br>&nbsp; &nbsp; if (NULL == pStr)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; nSize = 0x100;<br>&nbsp; &nbsp; &nbsp; &nbsp; pStr&nbsp; = (T*)malloc(nSize * sizeof(T));<br>&nbsp; &nbsp; &nbsp; &nbsp; if (NULL == pStr)<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return FALSE;<br><br>&nbsp; &nbsp; &nbsp; &nbsp; *pStr = T('\0');<br>&nbsp; &nbsp; &nbsp; &nbsp; nPos&nbsp; = 0;<br>&nbsp; &nbsp; }<br><br>&nbsp; &nbsp; pStr&#091;nPos&#093; = ch;<br>&nbsp; &nbsp; if (++nPos == nSize)<br>&nbsp; &nbsp; {<br>&nbsp; &nbsp; &nbsp; &nbsp; nSize *= 2;<br><b>&nbsp; &nbsp;// ---&gt;&gt;&gt;&gt;&nbsp; &nbsp; &nbsp;pStr = (T*)realloc(pStr, nSize);</b></font></div><div><b><font face="Courier New, Courier, mono">&nbsp; &nbsp;// Should be:</font></b></div><div><font face="Courier New, Courier, mono"><b>&nbsp; &nbsp; &nbsp; &nbsp; pStr = (T*)realloc(pStr, nSize * sizeof(T));</b><br>&nbsp; &nbsp; &nbsp; &nbsp; if (NULL == pStr)<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return FALSE;<br><br>&nbsp; &nbsp; &nbsp; &nbsp; pStr&#091;nPos&#093; = T('\0');<br>&nbsp; &nbsp; }<br><br>&nbsp; &nbsp; return TRUE;<br>}</font></div>]]>
   </description>
   <pubDate>Mon, 15 Jun 2026 16:08:29 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=24646&amp;PID=79414&amp;title=memory-bug-in-xtpmarkupstatic#79414</guid>
  </item> 
  <item>
   <title><![CDATA[Toolkit Pro : Toolset update]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=24643&amp;PID=79403&amp;title=toolset-update#79403</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=8199">astoyan</a><br /><strong>Subject:</strong> Toolset update<br /><strong>Posted:</strong> 05 June 2026 at 12:57am<br /><br /><div>Hello Piotr,</div><div><br></div><div>Visual Studio 2026 official support will be added in the upcoming version. The currently available v24.3 does not provide an official support for it.</div><div><br></div><div>Regards,</div><div>&nbsp; Alexander</div>]]>
   </description>
   <pubDate>Fri, 05 Jun 2026 00:57:54 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=24643&amp;PID=79403&amp;title=toolset-update#79403</guid>
  </item> 
  <item>
   <title><![CDATA[Toolkit Pro : TaskDialog infinite loop on an error case]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=24644&amp;PID=79402&amp;title=taskdialog-infinite-loop-on-an-error-case#79402</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=8199">astoyan</a><br /><strong>Subject:</strong> TaskDialog infinite loop on an error case<br /><strong>Posted:</strong> 05 June 2026 at 12:55am<br /><br /><div>Thanks for reporting this mistake. Indeed, the return value must be -1. I'll be fixed in the upcoming version.</div><div><br></div><div>Regards,</div><div>&nbsp; &nbsp;Alexander</div>]]>
   </description>
   <pubDate>Fri, 05 Jun 2026 00:55:31 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=24644&amp;PID=79402&amp;title=taskdialog-infinite-loop-on-an-error-case#79402</guid>
  </item> 
  <item>
   <title><![CDATA[Toolkit Pro : TaskDialog infinite loop on an error case]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=24644&amp;PID=79401&amp;title=taskdialog-infinite-loop-on-an-error-case#79401</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=9141">Julianis</a><br /><strong>Subject:</strong> TaskDialog infinite loop on an error case<br /><strong>Posted:</strong> 03 June 2026 at 5:54am<br /><br />We are using an CXTPTaskDialog in our application.<br><br>I'm using incorrect settings and the dialog fails to create.<br>In this case the application ends up in an infinite loop.<br><br>The culprit seems to be the handling of the error case in&nbsp;<br><br><pre style="font-family:'Cascadia Mono';font-size:9pt;color:#000000"><span style="color:#0000ff">int</span> CXTPTaskDialogFrame::OnCreate<span style="color:#1a94ff">(</span>LPCREATESTRUCT lpCreateStruct<span style="color:#1a94ff">)<br>{<br>  ...<br>  </span>	<span style="color:#0000ff">if</span> <span style="color:#ffd702">(</span>!CreateClient<span style="color:#d86ac2">(</span>TRUE<span style="color:#d86ac2">)</span><span style="color:#ffd702">)</span>	<span style="color:#ffd702">{</span>		TRACE0<span style="color:#d86ac2">(</span><span style="color:#a31515">"Failed to create Task Dialog UI window.\n"</span><span style="color:#d86ac2">)</span>;		<span style="color:#0000ff">return</span> FALSE;	<span style="color:#ffd702">}</span><br>}<br><br>The return FALSE seems to be incorrect (the method returns 0 as success).<br><br>If I patch the code with a return -1 when CreateClient() fails, the infinite loop no longer happens.</pre><br>]]>
   </description>
   <pubDate>Wed, 03 Jun 2026 05:54:30 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=24644&amp;PID=79401&amp;title=taskdialog-infinite-loop-on-an-error-case#79401</guid>
  </item> 
  <item>
   <title><![CDATA[Toolkit Pro : Toolset update]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=24643&amp;PID=79399&amp;title=toolset-update#79399</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=9714">piootr</a><br /><strong>Subject:</strong> Toolset update<br /><strong>Posted:</strong> 28 May 2026 at 6:05am<br /><br />After latest toolset change in VS2026 I get this error on all XTP projects:<br><br><pre style="font-family: &quot;Cascadia Mono&quot;; font-size: 9pt; color: rgb0, 0, 0; --darkreader-inline-color: var--darkreader-text-000000, #e8e6e3;" -darkreader-inline-color="">C:\Program Files\Microsoft Visual Studio\18\Community\MSBuild\Microsoft\VC\v180\Microsoft.CppBuild.targets(473,5): error MSB8020: The build tools for v145 (Platform Toolset = 'v145') cannot be found. To build using the v145 build tools, please install v145 build tools.  Alternatively, you may upgrade to the current Visual Studio tools by selecting the Project menu or right-click the solution, and then selecting "Retarget solution".</pre><div>Retarget did not work, I needed to manually change the files, but it is a pain, as none of the samples compile.</div>]]>
   </description>
   <pubDate>Thu, 28 May 2026 06:05:19 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=24643&amp;PID=79399&amp;title=toolset-update#79399</guid>
  </item> 
  <item>
   <title><![CDATA[Toolkit Pro : How to change color of the docking pane caption?]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=24641&amp;PID=79391&amp;title=how-to-change-color-of-the-docking-pane-caption#79391</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=686">cpede</a><br /><strong>Subject:</strong> How to change color of the docking pane caption?<br /><strong>Posted:</strong> 19 May 2026 at 10:25am<br /><br />I'm doing that through the styles ini file in section<div><br></div><div>E.g.</div><div><table width="99%"><tr><td><pre class="BBcode"></div><div><pre style="font-family: &quot;Cascadia Mono&quot;; font-size: 9pt;">XTPPaintManager()-&gt;SetTheme(xtpThemeOffice2016);XTPResourceImages()-&gt;SetHandle(sThemePath, _T(<span style="color:#a31515">"Office2016PowerPointDarkGray.ini"</span>));<br><br><br><pre style="font-family: &quot;Cascadia Mono&quot;; font-size: 9pt;"><span style="color:#2b91af">&#091;DockingPane.Active&#093;</span><span style="color:#0000ff">BorderColor</span> = 0 87 78<span style="color:#0000ff">BackgroundColor</span> = 178 178 178<span style="color:#0000ff">TextColor</span> = 255 255 255<b><span style="color:#0000ff">CaptionColor</span> = 0 87 78</b><span style="color:#0000ff">GripperColor</span> = 0 166 159</pre><br></pre><div></pre></td></tr></table></div><div><br></div><div></div></div>]]>
   </description>
   <pubDate>Tue, 19 May 2026 10:25:23 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=24641&amp;PID=79391&amp;title=how-to-change-color-of-the-docking-pane-caption#79391</guid>
  </item> 
  <item>
   <title><![CDATA[Toolkit Pro : How to change color of the docking pane caption?]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=24641&amp;PID=79390&amp;title=how-to-change-color-of-the-docking-pane-caption#79390</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1424">g_j_a_i_n</a><br /><strong>Subject:</strong> How to change color of the docking pane caption?<br /><strong>Posted:</strong> 18 May 2026 at 11:26pm<br /><br /><div><br></div><div>Hello,</div><div><br></div><div>Can you please tell me how to change the color of docking pane's caption. I want to change the blue color to something else.</div><div><br></div><div>I tried PaneManager-&gt;GetPaintManager()-&gt;<span style="font-family: &quot;Cascadia Mono&quot;; font-size: 9pt;">m_clrActiveCaption. But the color remains blue.</span></div><div><br></div><div><img src="uploads/1424/Screenshot_2026-05-19_085658.png" height="406" width="449" border="0" /><br></div><div><br></div><div><br></div><div><br></div><div>Regards,</div><div>Gautam Jain</div><div><br></div>]]>
   </description>
   <pubDate>Mon, 18 May 2026 23:26:42 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=24641&amp;PID=79390&amp;title=how-to-change-color-of-the-docking-pane-caption#79390</guid>
  </item> 
 </channel>
</rss>