<?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 : [SOLVED] How to AutoHide Pane?</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Docking Pane : [SOLVED] How to AutoHide Pane?]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sun, 19 Apr 2026 15:32:03 +0000</pubDate>
  <lastBuildDate>Thu, 10 Jun 2010 05:31:19 +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=16798</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[[SOLVED] How to AutoHide Pane? : Aaron,That works brilliantly....]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16798&amp;PID=58881&amp;title=solved-how-to-autohide-pane#58881</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4225">chrisABC</a><br /><strong>Subject:</strong> 16798<br /><strong>Posted:</strong> 10 June 2010 at 5:31am<br /><br />Aaron,<br><br>That works brilliantly. Just what I wanted. THANK YOU.<br><br>(I have been using DockingPane for several years and have never used&nbsp; Pane.SELECT.&nbsp; I expect there is much else I have not used :-)<br><br>Just for information, I have now put the CJ Calendar Control in an autohide Pane, and I think this looks really nice in my app.&nbsp; Move the mouse over the tab and the Calendar appears. And if the Calendar is hidden and an appointment Reminder event is fired, it does pop up the reminder on screen.<br><br>Thanks again, Aaron. <br>]]>
   </description>
   <pubDate>Thu, 10 Jun 2010 05:31:19 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16798&amp;PID=58881&amp;title=solved-how-to-autohide-pane#58881</guid>
  </item> 
  <item>
   <title><![CDATA[[SOLVED] How to AutoHide Pane? : Hi Chris,  You don&amp;#039;t need...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16798&amp;PID=58873&amp;title=solved-how-to-autohide-pane#58873</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3701">Aaron</a><br /><strong>Subject:</strong> 16798<br /><strong>Posted:</strong> 09 June 2010 at 2:06pm<br /><br />Hi Chris,<DIV>&nbsp;</DIV><DIV><strong>You don't need the code in DockingPane Action event</strong>. I tried again and you only have to:</DIV><DIV>&nbsp;</DIV><DIV>Set paneReport = DockingPane.CreatePane(201, 300, 300, DockRightOf, Nothing)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; paneReport.Title = "Data"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <strong><FONT color=#0000ff>paneReport.Hide<BR></FONT></strong></DIV><DIV>Set paneProperties = DockingPane.CreatePane(202, 300, 300, DockLeftOf, Nothing)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; paneProperties.Title = "Properties"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</DIV><DIV>....</DIV><DIV>&nbsp;</DIV><DIV>and after creation of all panes</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT color=#0000ff><strong>paneReport.Select</strong></FONT></DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV><strong><FONT color=#0000ff>paneReport.Hide&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; - </FONT></strong>This will set the autohide functionality </DIV><DIV><FONT color=#0000ff><strong>paneReport.Select&nbsp;&nbsp;&nbsp;&nbsp;- </strong></FONT><FONT color=#000000>This will show the hidden pane&nbsp;&amp; autohide is already set</FONT></DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Wed, 09 Jun 2010 14:06:15 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16798&amp;PID=58873&amp;title=solved-how-to-autohide-pane#58873</guid>
  </item> 
  <item>
   <title><![CDATA[[SOLVED] How to AutoHide Pane? : OK, thanks. I can live with this.&amp;gt;...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16798&amp;PID=58838&amp;title=solved-how-to-autohide-pane#58838</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4225">chrisABC</a><br /><strong>Subject:</strong> 16798<br /><strong>Posted:</strong> 08 June 2010 at 2:02pm<br /><br />OK, thanks. I can live with this.<br><br>&gt; the pane has to be hidden before autohide does something.<br>]]>
   </description>
   <pubDate>Tue, 08 Jun 2010 14:02:56 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16798&amp;PID=58838&amp;title=solved-how-to-autohide-pane#58838</guid>
  </item> 
  <item>
   <title><![CDATA[[SOLVED] How to AutoHide Pane? : Hi Chris,  Correct, the pane...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16798&amp;PID=58837&amp;title=solved-how-to-autohide-pane#58837</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3701">Aaron</a><br /><strong>Subject:</strong> 16798<br /><strong>Posted:</strong> 08 June 2010 at 1:48pm<br /><br />Hi Chris,<DIV>&nbsp;</DIV><DIV>Correct, the pane has to be hidden before autohide does something.</DIV><DIV>&nbsp;</DIV><DIV>Maybe something like:</DIV><DIV>&nbsp;</DIV><DIV>Private Sub DockingPane_Action(ByVal Action As XtremeDockingPane.DockingPaneAction, ByVal Pane As XtremeDockingPane.IPane, ByVal Container As XtremeDockingPane.IPaneActionContainer, Cancel As Boolean)<BR>&nbsp;&nbsp;&nbsp; If Action = PaneActionActivated And <strong>Not</strong> Pane.Id =&nbsp;ID_PANE_TO_HIDE Then <FONT color=#006600>'another pane has been selected</FONT><BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Me.DockingPane.HidePane Me.DockingPane.FindPane(ID_PANE_TO_HIDE)<BR>&nbsp;&nbsp;&nbsp; End If&nbsp;&nbsp;&nbsp; <BR>End Sub</DIV><DIV>&nbsp;</DIV><DIV>will hide the pane when another pane is selected and select pane (to be hidden at startup) so you are sure user have to select a pane beside the "hidden" pane.</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Tue, 08 Jun 2010 13:48:27 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16798&amp;PID=58837&amp;title=solved-how-to-autohide-pane#58837</guid>
  </item> 
  <item>
   <title><![CDATA[[SOLVED] How to AutoHide Pane? :  Yes, I would like pane to be...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16798&amp;PID=58835&amp;title=solved-how-to-autohide-pane#58835</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4225">chrisABC</a><br /><strong>Subject:</strong> 16798<br /><strong>Posted:</strong> 08 June 2010 at 1:18pm<br /><br />Yes, I would like pane to be initially visible. Which it is at present.<br><br>But when I click on something else the pane does not autohide.&nbsp; <br><br>Maybe with autohide the pane MUST initially be hidden??<br>]]>
   </description>
   <pubDate>Tue, 08 Jun 2010 13:18:11 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16798&amp;PID=58835&amp;title=solved-how-to-autohide-pane#58835</guid>
  </item> 
  <item>
   <title><![CDATA[[SOLVED] How to AutoHide Pane? : Hi Chris,  Do you mean the pane...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16798&amp;PID=58832&amp;title=solved-how-to-autohide-pane#58832</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3701">Aaron</a><br /><strong>Subject:</strong> 16798<br /><strong>Posted:</strong> 08 June 2010 at 12:39pm<br /><br />Hi Chris,<DIV>&nbsp;</DIV><DIV>Do you mean the pane is initially visible? </DIV><DIV>And when should the pane hide again?</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Tue, 08 Jun 2010 12:39:33 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16798&amp;PID=58832&amp;title=solved-how-to-autohide-pane#58832</guid>
  </item> 
  <item>
   <title><![CDATA[[SOLVED] How to AutoHide Pane? :  I create a Pane and it appears...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16798&amp;PID=58822&amp;title=solved-how-to-autohide-pane#58822</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4225">chrisABC</a><br /><strong>Subject:</strong> 16798<br /><strong>Posted:</strong> 08 June 2010 at 4:58am<br /><br />I create a Pane and it appears on screen. The pushpin icon is Not Pinned.<br><br>But Pane will not Autohide.<br><br>If I then do&nbsp;&nbsp;&nbsp;&nbsp; DPM.HidePane&nbsp; MyPane<br>this causes the Pane to hide, and from now on the autohide works OK.<br><br><br>Can you suggest how I can get the Pane to initially appear on screen with the autohide already set to work?<br><br><br>ANSWER: Not possible. <br>]]>
   </description>
   <pubDate>Tue, 08 Jun 2010 04:58:44 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16798&amp;PID=58822&amp;title=solved-how-to-autohide-pane#58822</guid>
  </item> 
 </channel>
</rss>