<?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 : XTP DLL Deployment</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Toolkit Pro : XTP DLL Deployment]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 10 Jun 2026 23:28:18 +0000</pubDate>
  <lastBuildDate>Mon, 01 Dec 2008 07:43:24 +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=12769</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[XTP DLL Deployment : Hello,@adrien : Binary compatibility...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=12769&amp;PID=43317&amp;title=xtp-dll-deployment#43317</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4164">nickpap</a><br /><strong>Subject:</strong> 12769<br /><strong>Posted:</strong> 01 December 2008 at 7:43am<br /><br />Hello,<br><br>@<a href="member_profile.asp?PF=2967&amp;FID=112" target="_blank">adrien</a> : Binary compatibility is not an issue for me, since I always rebuild the whole application suite for a patch, so everything is relinked with the latest headers, libs, etc. Also, I always distribute a diff patcher application, never a single dll.<br><br>@<a href="member_profile.asp?PF=2198&amp;FID=112" target="_blank">znakeeye</a>: If you edit the header file, you can add such a define yourself. What you probably mean, is perhaps an option during setup, where you can enter a preferred name to be used during the library build.<br>]]>
   </description>
   <pubDate>Mon, 01 Dec 2008 07:43:24 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=12769&amp;PID=43317&amp;title=xtp-dll-deployment#43317</guid>
  </item> 
  <item>
   <title><![CDATA[XTP DLL Deployment : Perhaps CJ should add a #define...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=12769&amp;PID=43296&amp;title=xtp-dll-deployment#43296</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2198">znakeeye</a><br /><strong>Subject:</strong> 12769<br /><strong>Posted:</strong> 01 December 2008 at 2:30am<br /><br />Perhaps CJ should add a #define for the DLL/LIB name?]]>
   </description>
   <pubDate>Mon, 01 Dec 2008 02:30:07 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=12769&amp;PID=43296&amp;title=xtp-dll-deployment#43296</guid>
  </item> 
  <item>
   <title><![CDATA[XTP DLL Deployment : Hi Nick  We looked into this issue...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=12769&amp;PID=43291&amp;title=xtp-dll-deployment#43291</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2967">adrien</a><br /><strong>Subject:</strong> 12769<br /><strong>Posted:</strong> 30 November 2008 at 6:16am<br /><br />Hi Nick<br /><br />We looked into this issue as well, but if you look into the reasons why the name, you may still need to keep some aspects in there - e.g. version number, since the DLL isn't necessarily binary compatible with earlier versions.<br /><br />to chang ethe lib file that is included in the header, look for a #pragma comment(lib, ...) entry]]>
   </description>
   <pubDate>Sun, 30 Nov 2008 06:16:20 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=12769&amp;PID=43291&amp;title=xtp-dll-deployment#43291</guid>
  </item> 
  <item>
   <title><![CDATA[XTP DLL Deployment : Hello there,First of all, I&amp;#039;d...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=12769&amp;PID=43246&amp;title=xtp-dll-deployment#43246</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4164">nickpap</a><br /><strong>Subject:</strong> 12769<br /><strong>Posted:</strong> 27 November 2008 at 5:04am<br /><br />Hello there,<br><br>First of all, I'd like to thank Oleg for a prompt and clear response ! Here is what I did based on his suggestions and it worked just file:<br><br>Open the XTToolkitPro.h file and go near the end of it. You should see there some directives that create the library name from various definitions that have been set in the code above.<br><br>As you can see below, I commented out the original #pragma lines and edited them to generate the XTP name and only use the _XTPLIB_PROJECT_CONFIGURATION define, so I can have both XTP.dll, lib, for Release and XTPD.dll, lib for Debug builds.<br><br>After this, just save the edited file "closer" to your application sources, that is, in a path that comes before the one used by VS to locate the Toolkit stuff. This could be your application sources path, some common Includes path you may have, anything that will be read before the original Toolkit header.<br><br>Then copy the libs you built in the proper build folders, XTP.lib into Release and XTPD.lib into Debug and perform a Clean Rebuild. This is very important, since all your previous builds may contain links to the original Toolkit DLLs.<br><br>Then, after a successful build, you have to copy the DLLs near the binaries and hey presto, they work !<br><br>#ifndef _XTPLIB_NOAUTOLINK<br>&nbsp;&nbsp; &nbsp;//#pragma comment(lib, "ToolkitPro" _XTPLIB_PROJECT_EVAL _XTPLIB_FILE_VERSION _XTPLIB_VISUALSTUDIO_VERSION _XTPLIB_PLATFORM _XTPLIB_PROJECT_CONFIGURATION ".lib")<br>&nbsp;&nbsp; &nbsp;//#pragma message("Automatically linking with ToolkitPro" _XTPLIB_PROJECT_EVAL _XTPLIB_FILE_VERSION _XTPLIB_VISUALSTUDIO_VERSION _XTPLIB_PLATFORM _XTPLIB_PROJECT_CONFIGURATION "." _XTPLIB_LINK_TYPE)<br>&nbsp;&nbsp; &nbsp;#pragma comment(lib, "XTP" _XTPLIB_PROJECT_CONFIGURATION ".lib")<br>&nbsp;&nbsp; &nbsp;#pragma message("Automatically linking with ToolkitPro XTP" _XTPLIB_PROJECT_CONFIGURATION "." _XTPLIB_LINK_TYPE)<br>#endif //_XTPLIB_NOAUTOLINK<br><br><img src="http://forum.codejock.com/smileys/smiley20.gif" border="0" align="absmiddle"><br>]]>
   </description>
   <pubDate>Thu, 27 Nov 2008 05:04:48 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=12769&amp;PID=43246&amp;title=xtp-dll-deployment#43246</guid>
  </item> 
  <item>
   <title><![CDATA[XTP DLL Deployment : Hi Oleg, Can you please go a...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=12769&amp;PID=43196&amp;title=xtp-dll-deployment#43196</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2712">aaabc</a><br /><strong>Subject:</strong> 12769<br /><strong>Posted:</strong> 25 November 2008 at 6:31pm<br /><br /><P>Hi Oleg,</P><DIV>Can you please go a bit detail on how to 'patch' XTToolkitPro.h to use a new name?&nbsp; I did change the dll/lib name and it now compiles to produce dll with the new name, but what to patch and how/where?</DIV>]]>
   </description>
   <pubDate>Tue, 25 Nov 2008 18:31:49 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=12769&amp;PID=43196&amp;title=xtp-dll-deployment#43196</guid>
  </item> 
  <item>
   <title><![CDATA[XTP DLL Deployment : Hi, Yes, you can change name....]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=12769&amp;PID=43142&amp;title=xtp-dll-deployment#43142</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 12769<br /><strong>Posted:</strong> 24 November 2008 at 5:10am<br /><br /><P>Hi,</P><P>Yes, you can change name. Open toolkit project in IDE and change dll/lib names. Now patch XTToolkitPro.h to use this name.</P>]]>
   </description>
   <pubDate>Mon, 24 Nov 2008 05:10:12 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=12769&amp;PID=43142&amp;title=xtp-dll-deployment#43142</guid>
  </item> 
  <item>
   <title><![CDATA[XTP DLL Deployment : Hello,I have an application and...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=12769&amp;PID=43113&amp;title=xtp-dll-deployment#43113</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4164">nickpap</a><br /><strong>Subject:</strong> 12769<br /><strong>Posted:</strong> 22 November 2008 at 2:37pm<br /><br />Hello,<br><br>I have an application and several DLLs being built, each linking with the ToolkitPro DLL.<br><br>Now I am preparing to deploy the application and I do not like the idea of shipping the ToolkitPro1200vc80.dll by that name. I would like it to be something like Toolkit.dll, or XTP.dll. This would really come in handy when I'll prepare a patch for the app and I could include the latest Toolkit under the same name, with the patch app packing the differences only, instead of a whole new ToolkitProxxxxvc80.dll file.<br><br>I tried linking all my own DLLs statically with the Toolkit, but that created other issues I don't have time to deal with right now, plus it blowed up the DLL size significantly.<br><br>Another option I thought of would be to edit the XTToolkitPro.h file so that it does not create the library filename on its own but lets the project use one I select, actually a renamed copy of the original lib. This is just an idea, haven't tried it yet.<br><br>I'd like to know if anybody else has had this sort of problem and how they coped with it.<br><br>Thanks !<br>]]>
   </description>
   <pubDate>Sat, 22 Nov 2008 14:37:53 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=12769&amp;PID=43113&amp;title=xtp-dll-deployment#43113</guid>
  </item> 
 </channel>
</rss>