<?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 : Focus control in Pane</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Docking Pane : Focus control in Pane]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Tue, 28 Apr 2026 18:40:45 +0000</pubDate>
  <lastBuildDate>Fri, 13 Nov 2009 21:05:51 +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=15434</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[Focus control in Pane : Thank chrisABC for reply.   Your...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15434&amp;PID=54850&amp;title=focus-control-in-pane#54850</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4669">gibra</a><br /><strong>Subject:</strong> 15434<br /><strong>Posted:</strong> 13 November 2009 at 9:05pm<br /><br />Thank chrisABC for reply.<DIV></DIV><DIV>&nbsp;</DIV><DIV>Your suggestion is good, while I found MouseDown event&nbsp;a better way for me. </DIV><DIV>The user decide it self if to close, or not, the Pane.</DIV><DIV>&nbsp;</DIV><DIV>Private Sub MDIForm_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)<BR>&nbsp;&nbsp;&nbsp; DockingPaneManager.HidePane m_MyPane<BR>End Sub</DIV><DIV>&nbsp;</DIV><DIV>Thank! <img src="http://forum.codejock.com/smileys/smiley1.gif" border="0"></DIV>]]>
   </description>
   <pubDate>Fri, 13 Nov 2009 21:05:51 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15434&amp;PID=54850&amp;title=focus-control-in-pane#54850</guid>
  </item> 
  <item>
   <title><![CDATA[Focus control in Pane : Hi, Its special feature.your...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15434&amp;PID=54597&amp;title=focus-control-in-pane#54597</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 15434<br /><strong>Posted:</strong> 05 November 2009 at 12:42pm<br /><br /><P>Hi,</P><P>Its special feature.&nbsp;&nbsp;your users will be very annoyed if Pane will start autohide while they focus edit and start type something.</P>]]>
   </description>
   <pubDate>Thu, 05 Nov 2009 12:42:42 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15434&amp;PID=54597&amp;title=focus-control-in-pane#54597</guid>
  </item> 
  <item>
   <title><![CDATA[Focus control in Pane : I have an application that does...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15434&amp;PID=54594&amp;title=focus-control-in-pane#54594</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4225">chrisABC</a><br /><strong>Subject:</strong> 15434<br /><strong>Posted:</strong> 05 November 2009 at 12:28pm<br /><br />I have an application that does similar to what you require.<br><br>In the main MDI Form,&nbsp; add the following lines:<br>&nbsp;&nbsp; Private Sub MDIForm_MouseMove(etc...)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DockingPaneMain.HidePane m_MyPane<br>&nbsp;&nbsp; End Sub<br><br><br>And you need to set up m_MyPane:<br>In the Declarations section of the main MDI Form:<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Private m_MyPane as XtremeDoxkingPane.Pane<br><br>And when you create the particular Pane you are talking about, set the m_MyPane to it.<br><br>Now when you move the mouse off your pane onto the MainMDI form, the pane hides -- even if you have clicked in the textbox.<br>You may need to expand on the above, eg if you want the pane to hide if you move the mouse over other controls.<br><br>-------------------------------------------------------------------------------------<br>In my app I put all the code for creating and hiding panes into a separate module, and pass a reference to the DockingPaneMain control to it. This allows any of my MDI child forms to create or hide their own different Panes on the Main Form. I think it works very well.<br><br><br><br>]]>
   </description>
   <pubDate>Thu, 05 Nov 2009 12:28:53 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15434&amp;PID=54594&amp;title=focus-control-in-pane#54594</guid>
  </item> 
  <item>
   <title><![CDATA[Focus control in Pane : Hi, the problem is: how to auto-hide...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15434&amp;PID=54121&amp;title=focus-control-in-pane#54121</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4669">gibra</a><br /><strong>Subject:</strong> 15434<br /><strong>Posted:</strong> 23 October 2009 at 2:29pm<br /><br />Hi,<DIV>the problem is: how to auto-hide a Pane after&nbsp;I have&nbsp;clicked a control contained in Pane? </DIV><DIV>&nbsp;</DIV><DIV>Reproduce the problem is simple:</DIV><DIV>- open the VB6 project "MDISample"&nbsp;(shipped with CJ in DockingPane folder)</DIV><DIV>- run the VB6 project (a Document 1 child window&nbsp;is open and a lot of Panes is created.)</DIV><DIV>- move mouse over Pane 9, to open it</DIV><DIV>- <U>click</U> on TextBox control (contained into the Pane 9)</DIV><DIV>- now, from Pane 9 ,&nbsp;<U>move out</U> the mouse </DIV><DIV>&nbsp;</DIV><DIV>The Pane 9 <U><strong>still open</strong></U>,&nbsp;instead of perform auto-hide effect.</DIV><DIV>&nbsp;</DIV><DIV>To close the Pane 9 you must click to another control, i.e. click the&nbsp;TextBox into frmChild.</DIV><DIV>But if you don't have a frmChild opened, you can click anywhere whitout success:</DIV><DIV>The Pane 9 <U><strong>still open</strong></U>.</DIV><DIV>&nbsp;</DIV><DIV>If you DON'T click in TextBox, Pane 9 perform auto-hide.</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>I want that the&nbsp;Pane 9 perform auto-hide when move out the mouse, ALSO if I has clicked into the TextBox.</DIV><DIV>&nbsp;</DIV><DIV>How can solve this problem? <img src="http://forum.codejock.com/smileys/smiley5.gif" border="0"></DIV><DIV>&nbsp;</DIV><DIV>Thank</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Fri, 23 Oct 2009 14:29:29 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15434&amp;PID=54121&amp;title=focus-control-in-pane#54121</guid>
  </item> 
 </channel>
</rss>