<?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 : Docking pane is behind tab control?</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Docking Pane : Docking pane is behind tab control?]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Tue, 28 Apr 2026 22:26:16 +0000</pubDate>
  <lastBuildDate>Tue, 22 Aug 2006 13:07:56 +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=4844</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[Docking pane is behind tab control? : I got Oleg to help me out, here...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4844&amp;PID=15102&amp;title=docking-pane-is-behind-tab-control#15102</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=15">spike</a><br /><strong>Subject:</strong> 4844<br /><strong>Posted:</strong> 22 August 2006 at 1:07pm<br /><br />I got Oleg to help me out, here is the fix:<DIV>&nbsp;</DIV><DIV><FONT size=2><P></FONT><FONT color=#0000ff size=2>Private</FONT><FONT size=2> </FONT><FONT color=#0000ff size=2>Sub</FONT><FONT size=2> DockingPaneManager_GetClientBordersWidth(</FONT><FONT color=#0000ff size=2>ByVal</FONT><FONT size=2> sender </FONT><FONT color=#0000ff size=2>As</FONT><FONT size=2> </FONT><FONT color=#0000ff size=2>Object</FONT><FONT size=2>, </FONT><FONT color=#0000ff size=2>ByVal</FONT><FONT size=2> e </FONT><FONT color=#0000ff size=2>As</FONT><FONT size=2> AxXtremeDockingPane._DDockingPaneEvents_GetClientBordersWidthEvent) </FONT><FONT color=#0000ff size=2>Handles</FONT><FONT size=2> DockingPaneManager.GetClientBordersWidth</P><P>e.top += 25</P><P>e.bottom += 20</P><P></FONT><FONT color=#0000ff size=2>End</FONT><FONT size=2> </FONT><FONT color=#0000ff size=2>Sub</P></FONT></DIV>]]>
   </description>
   <pubDate>Tue, 22 Aug 2006 13:07:56 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4844&amp;PID=15102&amp;title=docking-pane-is-behind-tab-control#15102</guid>
  </item> 
  <item>
   <title><![CDATA[Docking pane is behind tab control? : VS 2005 ]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4844&amp;PID=15101&amp;title=docking-pane-is-behind-tab-control#15101</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=15">spike</a><br /><strong>Subject:</strong> 4844<br /><strong>Posted:</strong> 22 August 2006 at 12:43pm<br /><br />VS 2005]]>
   </description>
   <pubDate>Tue, 22 Aug 2006 12:43:04 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4844&amp;PID=15101&amp;title=docking-pane-is-behind-tab-control#15101</guid>
  </item> 
  <item>
   <title><![CDATA[Docking pane is behind tab control? : You code looks OK for MDI app....]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4844&amp;PID=15097&amp;title=docking-pane-is-behind-tab-control#15097</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=369">SuperMario</a><br /><strong>Subject:</strong> 4844<br /><strong>Posted:</strong> 22 August 2006 at 9:50am<br /><br />You code looks OK for MDI app.&nbsp; Which version of VS do you use?<br><br>For SDI I recommend you use a panel control to contain all the client controls, then do something like this:<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Private Sub DockingPaneManager_ResizeEvent(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles DockingPaneManager.ResizeEvent<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Dim left As Integer<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Dim top As Integer<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Dim right As Integer<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Dim bottom As Integer<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DockingPaneManager.GetClientRect(left, top, right, bottom)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; clientPanel.SetBounds(left, top, right - left, bottom - top)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End Sub<br>]]>
   </description>
   <pubDate>Tue, 22 Aug 2006 09:50:27 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4844&amp;PID=15097&amp;title=docking-pane-is-behind-tab-control#15097</guid>
  </item> 
  <item>
   <title><![CDATA[Docking pane is behind tab control? : Im also having the same type problem...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4844&amp;PID=15083&amp;title=docking-pane-is-behind-tab-control#15083</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=15">spike</a><br /><strong>Subject:</strong> 4844<br /><strong>Posted:</strong> 21 August 2006 at 7:31pm<br /><br />Im also having the same type problem with MDI applications. I put a standard Docking control in the mdi client area, used the following code ONLY:<DIV>&nbsp;</DIV><FONT size=2></FONT><FONT color=#0000ff size=2><FONT size=2><P></FONT><FONT color=#0000ff size=2>Private</FONT><FONT size=2> </FONT><FONT color=#0000ff size=2>Sub</FONT><FONT size=2> mdiMain_Load(</FONT><FONT color=#0000ff size=2>ByVal</FONT><FONT size=2> sender </FONT><FONT color=#0000ff size=2>As</FONT><FONT size=2> System.Object, </FONT><FONT color=#0000ff size=2>ByVal</FONT><FONT size=2> e </FONT><FONT color=#0000ff size=2>As</FONT><FONT size=2> System.EventArgs) </FONT><FONT color=#0000ff size=2>Handles</FONT><FONT size=2> </FONT><FONT color=#0000ff size=2>MyBase</FONT><FONT size=2>.Load</P><P></FONT><FONT color=#0000ff size=2>Dim</FONT><FONT size=2> ctrl </FONT><FONT color=#0000ff size=2>As</FONT><FONT size=2> Control</P><P></FONT><FONT color=#0000ff size=2>For</FONT><FONT size=2> </FONT><FONT color=#0000ff size=2>Each</FONT><FONT size=2> ctrl </FONT><FONT color=#0000ff size=2>In</FONT><FONT size=2> </FONT><FONT color=#0000ff size=2>Me</FONT><FONT size=2>.Controls</P><P></FONT><FONT color=#0000ff size=2>If</FONT><FONT size=2> </FONT><FONT color=#0000ff size=2>TypeOf</FONT><FONT size=2> ctrl </FONT><FONT color=#0000ff size=2>Is</FONT><FONT size=2> MdiClient </FONT><FONT color=#0000ff size=2>Then</P></FONT><FONT size=2><P>DockingPaneManager.SetMDIClient(ctrl.Handle.ToInt32())</P><P></FONT><FONT color=#0000ff size=2>End</FONT><FONT size=2> </FONT><FONT color=#0000ff size=2>If</P></FONT><FONT size=2><P></FONT><FONT color=#0000ff size=2>Next</FONT><FONT size=2> ctrl</P><P></FONT><FONT color=#0000ff size=2>Dim</FONT><FONT size=2> paneExplorer </FONT><FONT color=#0000ff size=2>As</FONT><FONT size=2> Pane = DockingPaneManager.CreatePane(1, 200, 120, DockingDirection.DockLeftOf, </FONT><FONT color=#0000ff size=2>Nothing</FONT><FONT size=2>)</P><P>paneExplorer.Title = </FONT><FONT color=#800000 size=2>"Explorer"</P><P>&nbsp;</P></FONT><FONT size=2><P></FONT><FONT color=#0000ff size=2>End</FONT><FONT size=2> </FONT><FONT color=#0000ff size=2>Sub</P></FONT><FONT size=2><P></FONT><FONT color=#0000ff size=2>Private</FONT><FONT size=2> </FONT><FONT color=#0000ff size=2>Sub</FONT><FONT size=2> DockingPaneManager_AttachPaneEvent(</FONT><FONT color=#0000ff size=2>ByVal</FONT><FONT size=2> sender </FONT><FONT color=#0000ff size=2>As</FONT><FONT size=2> </FONT><FONT color=#0000ff size=2>Object</FONT><FONT size=2>, </FONT><FONT color=#0000ff size=2>ByVal</FONT><FONT size=2> e </FONT><FONT color=#0000ff size=2>As</FONT><FONT size=2> AxXtremeDockingPane._DDockingPaneEvents_AttachPaneEvent) </FONT><FONT color=#0000ff size=2>Handles</FONT><FONT size=2> DockingPaneManager.AttachPaneEvent</P><P></FONT><FONT color=#0000ff size=2>If</FONT><FONT size=2> pageExplorer </FONT><FONT color=#0000ff size=2>Is</FONT><FONT size=2> </FONT><FONT color=#0000ff size=2>Nothing</FONT><FONT size=2> </FONT><FONT color=#0000ff size=2>Then</P></FONT><FONT size=2><P>pageExplorer = </FONT><FONT color=#0000ff size=2>New</FONT><FONT size=2> pageExplorer</P><P></FONT><FONT color=#0000ff size=2>End</FONT><FONT size=2> </FONT><FONT color=#0000ff size=2>If</P></FONT><FONT size=2><P>e.item.Handle = pageExplorer.Handle.ToInt32</P><P></FONT><FONT color=#0000ff size=2>End</FONT><FONT size=2> </FONT><FONT color=#0000ff size=2>Sub</P></FONT></FONT><FONT color=#800000 size=2><P>And the title bar of the docking frame is covered by the toolbar/menu of the MDI container. Its as though the docking pane manager doesnt know the actual client rect of the application.</FONT></P>]]>
   </description>
   <pubDate>Mon, 21 Aug 2006 19:31:34 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4844&amp;PID=15083&amp;title=docking-pane-is-behind-tab-control#15083</guid>
  </item> 
  <item>
   <title><![CDATA[Docking pane is behind tab control? : I dont have command bars in my...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4844&amp;PID=15082&amp;title=docking-pane-is-behind-tab-control#15082</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=15">spike</a><br /><strong>Subject:</strong> 4844<br /><strong>Posted:</strong> 21 August 2006 at 5:07pm<br /><br /><img src="http://www.turbozilla.com/coderman/xt2.jpg" border="0">I dont have command bars in my application . Im trying to get the image hosted somewhere so you can see whats going on. ]]>
   </description>
   <pubDate>Mon, 21 Aug 2006 17:07:10 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4844&amp;PID=15082&amp;title=docking-pane-is-behind-tab-control#15082</guid>
  </item> 
  <item>
   <title><![CDATA[Docking pane is behind tab control? : See this article.http://www.co...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4844&amp;PID=15081&amp;title=docking-pane-is-behind-tab-control#15081</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=369">SuperMario</a><br /><strong>Subject:</strong> 4844<br /><strong>Posted:</strong> 21 August 2006 at 4:54pm<br /><br />See this article.<br><br>http://www.codejock.com/support/articles/com/dockingpane/dp_3.asp]]>
   </description>
   <pubDate>Mon, 21 Aug 2006 16:54:40 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4844&amp;PID=15081&amp;title=docking-pane-is-behind-tab-control#15081</guid>
  </item> 
  <item>
   <title><![CDATA[Docking pane is behind tab control? : Is this a standard thing that...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4844&amp;PID=15080&amp;title=docking-pane-is-behind-tab-control#15080</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=15">spike</a><br /><strong>Subject:</strong> 4844<br /><strong>Posted:</strong> 21 August 2006 at 4:49pm<br /><br />Is this a standard thing that needs to be done? I dont see it in the samples, and it happens with almost any control that would be beneath the docking pane.]]>
   </description>
   <pubDate>Mon, 21 Aug 2006 16:49:37 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4844&amp;PID=15080&amp;title=docking-pane-is-behind-tab-control#15080</guid>
  </item> 
  <item>
   <title><![CDATA[Docking pane is behind tab control? : try making the z-order of the...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4844&amp;PID=15078&amp;title=docking-pane-is-behind-tab-control#15078</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=369">SuperMario</a><br /><strong>Subject:</strong> 4844<br /><strong>Posted:</strong> 21 August 2006 at 4:45pm<br /><br />try making the z-order of the dockingpane behind all other controls]]>
   </description>
   <pubDate>Mon, 21 Aug 2006 16:45:32 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4844&amp;PID=15078&amp;title=docking-pane-is-behind-tab-control#15078</guid>
  </item> 
  <item>
   <title><![CDATA[Docking pane is behind tab control? : I have a very simple VB.NET application...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4844&amp;PID=15077&amp;title=docking-pane-is-behind-tab-control#15077</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=15">spike</a><br /><strong>Subject:</strong> 4844<br /><strong>Posted:</strong> 21 August 2006 at 4:31pm<br /><br />I have a very simple VB.NET application with a standard form that has an Xtreme Tab control on it, Ive also added 1 docking pane. When the pane is created it shows up behind the tab control at all times, you can only see the parts not covered by the tab control. I remember in VC++ there was some style you had to add to get this to work( clip children) what is the work around in VB.NET?]]>
   </description>
   <pubDate>Mon, 21 Aug 2006 16:31:39 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4844&amp;PID=15077&amp;title=docking-pane-is-behind-tab-control#15077</guid>
  </item> 
 </channel>
</rss>