<?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 : Tookkit 9.70 &amp; vs2010</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Toolkit Pro : Tookkit 9.70 &amp; vs2010]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Tue, 21 Apr 2026 08:28:22 +0000</pubDate>
  <lastBuildDate>Wed, 05 May 2010 12:24:10 +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=16122</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[Tookkit 9.70 &amp; vs2010 : OK, I&amp;#039;ve figured it out. ...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16122&amp;PID=58333&amp;title=tookkit-9-70-vs2010#58333</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6081">wssdev</a><br /><strong>Subject:</strong> 16122<br /><strong>Posted:</strong> 05 May 2010 at 12:24pm<br /><br />OK, I've figured it out.<br><br>CXTPDockingPaneManager (XTPDockingPaneManager.cpp) window gets created with an ID = 0. <br><br>With previous MFC versions the ID value probably did not matter. Starting with the MFC version that comes with VS2010, a child window with an ID=0 for some reason will not receive WM_SIZEPARENT messages.<br><br>This means that CXTPDockingPaneManager::OnSizeParent() never gets called and the layout -- otherwise perfectly valid -- never gets a chance to be updated.<br><br>The fix in this case was to find a line in CXTPDockingPaneManager::InstallDockingPanes() where the docking pane manager window gets created:<br><br>&nbsp;&nbsp;&nbsp;&nbsp; if (!Create(_T("XTPDockingPaneManager"), _T(""), WS_CHILD, CRect(0, 0, 0, 0), pSite, <font color="#ff0000"><b>0</b></font>))<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return false;<br><br>and to set the ID (the last argument in the above call) to a non-zero value. I'm not sure if there are any restrictions regarding what this value should be. Probably not.<br><br>Note that it's possible that there are other places where the same issue might appear. Since we use only a limited functionality from XTP, this is all that was needed to be fixed in our case.<br><br><br><div ="active" title="Page Scroll Marker" id="PageScrollMarkerWedMay052010181232GMT0200RomanceDaylightTime"><div style="top: 0px;">&#9660;</div><div style="bottom: 0px;">&#9650;</div></div>]]>
   </description>
   <pubDate>Wed, 05 May 2010 12:24:10 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16122&amp;PID=58333&amp;title=tookkit-9-70-vs2010#58333</guid>
  </item> 
  <item>
   <title><![CDATA[Tookkit 9.70 &amp; vs2010 : YEs we did find a soultion to...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16122&amp;PID=58329&amp;title=tookkit-9-70-vs2010#58329</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=5871">rhuros</a><br /><strong>Subject:</strong> 16122<br /><strong>Posted:</strong> 05 May 2010 at 9:51am<br /><br />YEs we did find a soultion to this, in VS2010 change the project tool kit from v100 to v90.&nbsp; This in effect changes the version of MFC and the MSVC runtime you are using.&nbsp;&nbsp;It gets things to work but does stop you using newer features&nbsp;]]>
   </description>
   <pubDate>Wed, 05 May 2010 09:51:03 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16122&amp;PID=58329&amp;title=tookkit-9-70-vs2010#58329</guid>
  </item> 
  <item>
   <title><![CDATA[Tookkit 9.70 &amp; vs2010 : We had to modify WINVER anyway,...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16122&amp;PID=58323&amp;title=tookkit-9-70-vs2010#58323</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6081">wssdev</a><br /><strong>Subject:</strong> 16122<br /><strong>Posted:</strong> 05 May 2010 at 4:24am<br /><br />We had to modify WINVER anyway, since the samples are very old. At this moment, WINVER, _WIN32_WINNT and _WIN32_WINDOWS are all set to 0x0501 which (if I recall correctly)  corresponds to XP SP2.<br><br>I do not think it has something to do with the upgrade. It's more like there's an issue with the point at which XTP hooks into MFC frame window. <br><br>The whole XTP layout framework itself seems to work. Panes get constructed, layout gets constructed, no asserts firing. Only the panes are not visible. <br><br>I would say it has to be a change in the MFC itself that caused XTP to somehow stay detached from the frame window.<br><br><br><div ="" title="Page Scroll Marker" id="PageScrollMarkerWedMay052010101000GMT0200RomanceDaylightTime"><div style="top: 0px;">&#9660;</div><div style="bottom: 0px;">&#9650;</div></div>]]>
   </description>
   <pubDate>Wed, 05 May 2010 04:24:26 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16122&amp;PID=58323&amp;title=tookkit-9-70-vs2010#58323</guid>
  </item> 
  <item>
   <title><![CDATA[Tookkit 9.70 &amp; vs2010 : I would suspect that the projects...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16122&amp;PID=58321&amp;title=tookkit-9-70-vs2010#58321</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2198">znakeeye</a><br /><strong>Subject:</strong> 16122<br /><strong>Posted:</strong> 05 May 2010 at 4:09am<br /><br />I would suspect that the projects were converted erroneously by VS 2010. Perhaps some WINVER or other necessary predefinition got lost?<DIV></DIV><DIV></DIV><DIV>&nbsp;</DIV><DIV>Don't trust the project converter!</DIV>]]>
   </description>
   <pubDate>Wed, 05 May 2010 04:09:25 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16122&amp;PID=58321&amp;title=tookkit-9-70-vs2010#58321</guid>
  </item> 
  <item>
   <title><![CDATA[Tookkit 9.70 &amp; vs2010 : Hi,Did you find a solution for...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16122&amp;PID=58316&amp;title=tookkit-9-70-vs2010#58316</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6081">wssdev</a><br /><strong>Subject:</strong> 16122<br /><strong>Posted:</strong> 04 May 2010 at 10:55am<br /><br />Hi,<br><br>Did you find a solution for this issue? We are facing the same problem with XTP 10.31 and VS2010 RTM.<br><br>Cheers,<br>Vladimir<br><br><div ="" title="Page Scroll Marker" id="PageScrollMarkerTueMay042010165422GMT0200RomanceDaylightTime"><div style="top: 0px;">&#9660;</div><div style="bottom: 0px;">&#9650;</div></div>]]>
   </description>
   <pubDate>Tue, 04 May 2010 10:55:36 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16122&amp;PID=58316&amp;title=tookkit-9-70-vs2010#58316</guid>
  </item> 
  <item>
   <title><![CDATA[Tookkit 9.70 &amp; vs2010 : Hiya,  Have already done a search...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16122&amp;PID=56525&amp;title=tookkit-9-70-vs2010#56525</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=5871">rhuros</a><br /><strong>Subject:</strong> 16122<br /><strong>Posted:</strong> 02 February 2010 at 5:35am<br /><br />Hiya,<DIV>&nbsp;</DIV><DIV>Have already done a search through the forums on this, and turned up nothing (not really surprising as the version of XTP&nbsp;is that old).</DIV><DIV>&nbsp;</DIV><DIV>Anyway the issue I have is that we are converting our UI and related items to VS2010 because of other benifits that it may give.&nbsp; However this has turned up an issue with the version of Toolkit Pro that we are using.</DIV><DIV>&nbsp;</DIV><DIV>Basically all windows, docking panes etc. are being created correctly however they are not being displayed.&nbsp; This became apprent when we recompiled&nbsp;the 9.70&nbsp;source that we have in VS2010 and used the binaries with our app.</DIV><DIV>&nbsp;</DIV><DIV>The strange thing is that this worked in VS2008 with no change....</DIV><DIV>&nbsp;</DIV><DIV>Relavent Details are</DIV><DIV>&nbsp;</DIV><DIV>XTP 9.70 </DIV><DIV>VS2010 beta 2</DIV><DIV>Unicode static build.</DIV><DIV>And as far as I know no changes made to the source what-so-ever, were only rebuild as the binaries would not run with a VS2010 build of our app...</DIV><DIV>&nbsp;</DIV><DIV>Thanks for any help you might be able to give.</DIV><DIV>&nbsp;</DIV><DIV>Cheers</DIV><DIV>&nbsp;</DIV><DIV>Ian</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Tue, 02 Feb 2010 05:35:11 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16122&amp;PID=56525&amp;title=tookkit-9-70-vs2010#56525</guid>
  </item> 
 </channel>
</rss>