<?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 : VS2013 (Preview) support for TKP 16.2.x</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Toolkit Pro : VS2013 (Preview) support for TKP 16.2.x]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 20 Apr 2026 01:40:38 +0000</pubDate>
  <lastBuildDate>Mon, 21 Oct 2013 14:45:44 +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=21827</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[VS2013 (Preview) support for TKP 16.2.x : &amp;gt;We have also added this support...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=21827&amp;PID=71694&amp;title=vs2013-preview-support-for-tkp-16-2-x#71694</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=669">markr</a><br /><strong>Subject:</strong> 21827<br /><strong>Posted:</strong> 21 October 2013 at 2:45pm<br /><br />&gt;&nbsp;<span style=": rgb248, 248, 252;">We have also added this support for the next maintenance release</span><div><br></div><div>When is this expected?</div>]]>
   </description>
   <pubDate>Mon, 21 Oct 2013 14:45:44 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=21827&amp;PID=71694&amp;title=vs2013-preview-support-for-tkp-16-2-x#71694</guid>
  </item> 
  <item>
   <title><![CDATA[VS2013 (Preview) support for TKP 16.2.x : We have also added this support...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=21827&amp;PID=71639&amp;title=vs2013-preview-support-for-tkp-16-2-x#71639</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=369">SuperMario</a><br /><strong>Subject:</strong> 21827<br /><strong>Posted:</strong> 25 September 2013 at 11:31am<br /><br />We have also added this support for the next maintenance release.]]>
   </description>
   <pubDate>Wed, 25 Sep 2013 11:31:37 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=21827&amp;PID=71639&amp;title=vs2013-preview-support-for-tkp-16-2-x#71639</guid>
  </item> 
  <item>
   <title><![CDATA[VS2013 (Preview) support for TKP 16.2.x :  Converting the ToolkitPro 16.2.x...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=21827&amp;PID=71469&amp;title=vs2013-preview-support-for-tkp-16-2-x#71469</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=798">Insad</a><br /><strong>Subject:</strong> 21827<br /><strong>Posted:</strong> 01 August 2013 at 5:10am<br /><br />Converting the ToolkitPro 16.2.x solution/projects for VS2012 to VS2013 Preview&nbsp;doesn't make it compile.<div>&nbsp;</div><div>After converting the VS2012 solution to VS2013 Preview you will get all sorts of errors about undeclared variables and types.</div><div>&nbsp;</div><div>To fix this you have to elevate the WINVER to at least Win XP SP2. Plain simple: Otherwise it wouldn't compile because VS2013 Preview expects Win XP SP2 to be the lowest platform to be supported. (As did VS2012 although the&nbsp;MFC/AFX headers where not yet affected at the time <img src="http://forum.codejock.com/smileys/smiley2.gif" height="17" width="17" border="0" alt="Wink" title="Wink" />)</div><div>&nbsp;</div><div>So when you put the following changes in XTPDLLExports.h before compiling it should work.</div><div>&nbsp;</div><div>Change 1: (Changes WINVER and _WIN32_WINNT to 0x0502 =&gt; WinXP SP2)</div><div><table width="99%"><tr><td><pre class="BBcode"></div><div>// Modify the following defines if you have to target a platform prior to the ones specified below.<br>// Refer to MSDN for the latest info on corresponding values for different platforms.<br>#ifndef WINVER&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // Allow use of features specific to Windows 95 and Windows NT 4 or later.<br>#if _MSC_VER &gt; 1500<br>&nbsp;#if _MSC_VER &gt;= 1800&nbsp;&nbsp;&nbsp;// INSAD BUGFIX - Fixes VS2013<br>&nbsp;&nbsp;#define WINVER 0x0502&nbsp;&nbsp;// INSAD BUGFIX - Fixes VS2013 - At least WinXP SP2<br>&nbsp;#else&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// INSAD BUGFIX - Fixes VS2013<br>#define WINVER 0x0500<br>&nbsp;#endif&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// INSAD BUGFIX - Fixes VS2013<br>#else<br>#define WINVER 0x0400&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // Change this to the appropriate value to target Windows 98 and Windows 2000 or later.<br>#endif<br>#endif</div><div>#ifndef _WIN32_WINNT&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // Allow use of features specific to Windows NT 4 or later.<br>#if _MSC_VER &gt; 1500<br>&nbsp;#if _MSC_VER &gt;= 1800&nbsp;&nbsp;&nbsp;// INSAD BUGFIX - Fixes VS2013<br>&nbsp;&nbsp;#define _WIN32_WINNT 0x0502&nbsp;// INSAD BUGFIX - Fixes VS2013 - At least WinXP SP2<br>&nbsp;#else&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// INSAD BUGFIX - Fixes VS2013<br>#define _WIN32_WINNT 0x0500<br>&nbsp;#endif&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// INSAD BUGFIX - Fixes VS2013<br>#else<br>#define _WIN32_WINNT 0x0400&nbsp;&nbsp;&nbsp;&nbsp; // Change this to the appropriate value to target Windows 98 and Windows 2000 or later.<br>#endif<br>#endif</div><div></pre></td></tr></table></div><div>&nbsp;</div><div>Change 2: (Set Internet Explorer to at least IE 6 SP3)</div><div><table width="99%"><tr><td><pre class="BBcode"></div><div>#ifndef _WIN32_IE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // Allow use of features specific to IE 4.0 or later.</div><div>#if _MSC_VER &gt;= 1800&nbsp;&nbsp;&nbsp;// INSAD BUGFIX - Fixes VS2013<br>&nbsp;#define _WIN32_IE 0x0603&nbsp;// INSAD BUGFIX - Fixes VS2013 - At least IE 6.0 SP3<br>#else&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// INSAD BUGFIX - Fixes VS2013<br>#define _WIN32_IE 0x0500&nbsp;&nbsp;&nbsp; // Change this to the appropriate value to target IE 5.0 or later.<br>#endif&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// INSAD BUGFIX - Fixes VS2013<br>#endif</div><div>#endif<br></pre></td></tr></table></div><div>&nbsp;</div><div>I can understand that CodeJock doesn't support preview versions of Visual Studio, but for the daredevils among us, who are trying to work ahead for the future, this fix at least helps&nbsp;compiling and testing your apps on VS2013&nbsp;<img src="http://forum.codejock.com/smileys/smiley4.gif" height="17" width="17" border="0" alt="Big smile" title="Big smile" /></div><div>&nbsp;</div><div>Best regards,</div><div>&nbsp;</div><div>Insad</div><div>&nbsp;</div><div>&nbsp;</div>]]>
   </description>
   <pubDate>Thu, 01 Aug 2013 05:10:58 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=21827&amp;PID=71469&amp;title=vs2013-preview-support-for-tkp-16-2-x#71469</guid>
  </item> 
 </channel>
</rss>