<?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 : Docked Tab order</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Docking Pane : Docked Tab order]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 13 May 2026 18:03:07 +0000</pubDate>
  <lastBuildDate>Mon, 25 Feb 2008 08:58:22 +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=9074</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[Docked Tab order : I believe you could handle this...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=9074&amp;PID=31563&amp;title=docked-tab-order#31563</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2198">znakeeye</a><br /><strong>Subject:</strong> 9074<br /><strong>Posted:</strong> 25 February 2008 at 8:58am<br /><br />I believe you could handle this in OnDockingPaneNotify&nbsp;and call "Attach" in a specific way, to get the preferred layout - whenever a pane is about to be docked.]]>
   </description>
   <pubDate>Mon, 25 Feb 2008 08:58:22 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=9074&amp;PID=31563&amp;title=docked-tab-order#31563</guid>
  </item> 
  <item>
   <title><![CDATA[Docked Tab order : Hi Screamitus,  Thanks for your...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=9074&amp;PID=31552&amp;title=docked-tab-order#31552</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2440">dbrulhart</a><br /><strong>Subject:</strong> 9074<br /><strong>Posted:</strong> 25 February 2008 at 4:05am<br /><br />Hi Screamitus,<DIV>&nbsp;</DIV><DIV>Thanks for your reply.</DIV><DIV>&nbsp;</DIV><DIV>In the mean time we've modified the toolkit so that tabs are docked back in their original order.</DIV><DIV>&nbsp;</DIV><DIV>We always try to modify the toolkit as little as possible to avoid merging our changes at each new version... but was the only way this time.</DIV><DIV>&nbsp;</DIV><DIV>Thanks anyway for the suggestion.</DIV><DIV>&nbsp;</DIV><DIV>Best regards,</DIV><DIV>&nbsp;</DIV><DIV>Dominique</DIV>]]>
   </description>
   <pubDate>Mon, 25 Feb 2008 04:05:27 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=9074&amp;PID=31552&amp;title=docked-tab-order#31552</guid>
  </item> 
  <item>
   <title><![CDATA[Docked Tab order : If it will help, in VB I invoke...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=9074&amp;PID=31454&amp;title=docked-tab-order#31454</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3761">screamitus</a><br /><strong>Subject:</strong> 9074<br /><strong>Posted:</strong> 21 February 2008 at 6:07pm<br /><br />If it will help, in VB I invoke this little function every time the user pushes a 'Close' button (I have the tabs stay open until they close them or if pinned there is only a manual 'Close' button). I'm sure this would work&nbsp;if called from&nbsp;the "Hidden" event as well but havent tried that. You start with your left most tab then work your way to the right. I know this is an old post but didn't see a resolution and sounded like a biggy. <DIV>&nbsp;</DIV><DIV>Public Sub ArrangePanes()<BR>&nbsp;&nbsp;&nbsp; Dim pn As XtremeDockingPane.Pane<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; Set pn = frmMain.DockingPaneManager.FindPane(151)&nbsp;&nbsp; '//Admin<BR>&nbsp;&nbsp;&nbsp; frmMain.DockingPaneManager.DockPane pn, frmMain.ScaleWidth,&nbsp;&nbsp;&nbsp; frmAdmin.ScaleHeight, DockTopOf, Nothing<BR>&nbsp;&nbsp;&nbsp; pn.Hide<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; Set pn = frmMain.DockingPaneManager.FindPane(152)&nbsp;&nbsp; '//Comments<BR>&nbsp;&nbsp;&nbsp; frmMain.DockingPaneManager.DockPane pn, frmMain.ScaleWidth, frmComments.ScaleHeight, DockTopOf, Nothing<BR>&nbsp;&nbsp;&nbsp; pn.Hide<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; Set pn = frmMain.DockingPaneManager.FindPane(153)&nbsp;&nbsp; '//CC's<BR>&nbsp;&nbsp;&nbsp; frmMain.DockingPaneManager.DockPane pn, frmMain.ScaleWidth, frmCC.ScaleHeight, DockTopOf, Nothing<BR>&nbsp;&nbsp;&nbsp; pn.Hide<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; Set pn = frmMain.DockingPaneManager.FindPane(154)&nbsp;&nbsp; '//Jobs<BR>&nbsp;&nbsp;&nbsp; frmMain.DockingPaneManager.DockPane pn, frmMain.ScaleWidth, frmMain.ScaleHeight - 50, DockTopOf, Nothing<BR>&nbsp;&nbsp;&nbsp; pn.Hide<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; </DIV><DIV>End Sub<BR></DIV>]]>
   </description>
   <pubDate>Thu, 21 Feb 2008 18:07:30 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=9074&amp;PID=31454&amp;title=docked-tab-order#31454</guid>
  </item> 
  <item>
   <title><![CDATA[Docked Tab order : Hi Oleg,  Unfortunately yes......]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=9074&amp;PID=29359&amp;title=docked-tab-order#29359</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2440">dbrulhart</a><br /><strong>Subject:</strong> 9074<br /><strong>Posted:</strong> 11 December 2007 at 5:18pm<br /><br />Hi Oleg,<DIV>&nbsp;</DIV><DIV>Unfortunately yes... I agree that for us programmers we don't very often dock/undock panes, but&nbsp;in our application, many of the panes act as property pages and are very often shown/hidden/docked.</DIV><DIV>&nbsp;</DIV><DIV>It seems killing our users...</DIV><DIV>&nbsp;</DIV><DIV>Any idea welcome</DIV><DIV>&nbsp;</DIV><DIV>Cheers,</DIV><DIV>&nbsp;</DIV><DIV>Dominique</DIV>]]>
   </description>
   <pubDate>Tue, 11 Dec 2007 17:18:03 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=9074&amp;PID=29359&amp;title=docked-tab-order#29359</guid>
  </item> 
  <item>
   <title><![CDATA[Docked Tab order : Hi,   vc2008 works same...b...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=9074&amp;PID=29350&amp;title=docked-tab-order#29350</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 9074<br /><strong>Posted:</strong> 11 December 2007 at 3:50pm<br /><br />Hi,<DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>vc2008 works same...b is it really so important? </DIV>]]>
   </description>
   <pubDate>Tue, 11 Dec 2007 15:50:13 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=9074&amp;PID=29350&amp;title=docked-tab-order#29350</guid>
  </item> 
  <item>
   <title><![CDATA[Docked Tab order : Hi Oleg,  After a deep beta...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=9074&amp;PID=29343&amp;title=docked-tab-order#29343</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2440">dbrulhart</a><br /><strong>Subject:</strong> 9074<br /><strong>Posted:</strong> 11 December 2007 at 1:09pm<br /><br />Hi Oleg,<DIV>&nbsp;</DIV><DIV>After a deep beta period we have recurrent complains from mostly all our beta testers, for which the following issue is almost a showstopper:</DIV><DIV>&nbsp;</DIV><DIV>When docking back a floating pane the tab is always reinserted at the end of the tabs list and not where it was in the list before being set to float.</DIV><DIV>&nbsp;</DIV><DIV>I've traced in the code and seen the responsible AddTail()... against which&nbsp;there's nothing&nbsp;I can really do.</DIV><DIV>&nbsp;</DIV><DIV>Is there any way you could solve this for us, a hidden option or a fix ?</DIV><DIV>&nbsp;</DIV><DIV>According to our testers it's too irritating for them to work that way and I'm afraid we cannot release our product before fixing this.</DIV><DIV>&nbsp;</DIV><DIV>Thanks&nbsp; lot in advance</DIV><DIV>&nbsp;</DIV><DIV>Cheers,</DIV><DIV>&nbsp;</DIV><DIV>Dominique</DIV>]]>
   </description>
   <pubDate>Tue, 11 Dec 2007 13:09:14 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=9074&amp;PID=29343&amp;title=docked-tab-order#29343</guid>
  </item> 
 </channel>
</rss>