<?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 Panes - Focus Problem</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Suite Pro : Docking Panes - Focus Problem]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 27 May 2026 17:24:51 +0000</pubDate>
  <lastBuildDate>Thu, 17 Mar 2005 10:28:37 +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=1961</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 Panes - Focus Problem : Must have taken some courage to...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1961&amp;PID=5784&amp;title=docking-panes-focus-problem#5784</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=884">DDJJ</a><br /><strong>Subject:</strong> 1961<br /><strong>Posted:</strong> 17 March 2005 at 10:28am<br /><br /><P>Must have taken some courage to wade in to this SuperMario...<IMG style="CURSOR: pointer" &#111;nclick="AddSmileyIc&#111;n'smileys/smiley2.gif'" alt=Wink src="http://forum.codejock.com/smileys/smiley2.gif" border="0"></P><P>In your response, you suggest that the problem only occurs if the panes are floating.&nbsp; In my case, all panes are docked, and I'm still having the problem.&nbsp;But I gather that for troubleshooting purposes I should go through and disable the tabstop property for all controls contained in pictureboxes that are NOT currently in use by the DockingPane Manager, correct?</P><P>Will play with this and see what happens...</P><P>Thanks!</P>]]>
   </description>
   <pubDate>Thu, 17 Mar 2005 10:28:37 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1961&amp;PID=5784&amp;title=docking-panes-focus-problem#5784</guid>
  </item> 
  <item>
   <title><![CDATA[Docking Panes - Focus Problem : Ok I will try to help. It appears...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1961&amp;PID=5781&amp;title=docking-panes-focus-problem#5781</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=369">SuperMario</a><br /><strong>Subject:</strong> 1961<br /><strong>Posted:</strong> 17 March 2005 at 9:46am<br /><br />Ok I will try to help.&nbsp; It appears there is an internal problem inVisual Basic with floating controls.&nbsp; So to help with the problemyou and do something like this:<br><br>Private Sub DockingPaneManager_Action(ByVal Action AsXtremeDockingPane.DockingPaneAction, ByVal Pane AsXtremeDockingPane.IPane, Cancel As Boolean)<br>&nbsp;&nbsp;&nbsp; If (Action = PaneActionFloated Or Action = PaneActionDocked) Then<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;  'Must do this for each control in the Picture boxes<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; txtText1.TabStop = Not DockingPaneManager.FindPane(PaneOne).Floating<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;  'Repeat for each control in picture box for pane with id PaneOne<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; txtCombo1.TabStop = Not DockingPaneManager.FindPane(PaneTwo).Floating<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;  'Repeat for each control in picture box for pane with id PaneTwo<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;  'etc...<br>&nbsp;&nbsp;&nbsp; End If<br>End Sub<br><br>So you must disable tabstop for all controls placed within the picturebox atached to the pane when it is floating.<br><br>Hopefully this helps clear things up a little<img src="http://forum.codejock.com/smileys/smiley1.gif" border="0"><br><br>]]>
   </description>
   <pubDate>Thu, 17 Mar 2005 09:46:18 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1961&amp;PID=5781&amp;title=docking-panes-focus-problem#5781</guid>
  </item> 
  <item>
   <title><![CDATA[Docking Panes - Focus Problem :   DDJJ wrote:Given the likelihood...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1961&amp;PID=5779&amp;title=docking-panes-focus-problem#5779</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=756">gshawn</a><br /><strong>Subject:</strong> 1961<br /><strong>Posted:</strong> 17 March 2005 at 9:32am<br /><br /><P><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Originally posted by DDJJ" alt="Originally posted by DDJJ" style="vertical-align: text-bottom;" /> <strong>DDJJ wrote:</strong><br /><br />Given the likelihood of focus issues when using the Docking Pane, it would be nice to see something, anything, in the help file on this topic.<IMG style="CURSOR: pointer" alt=Ermm src="http://forum.codejock.com/smileys/smiley24.gif" &#111;nclick="AddSmileyIc&#111;n'smileys/smiley24.gif'" border="0"></td></tr></table> </P><P>I agree. That, and an official blurb from CodeJock here in the forums on how to handle this issue. I have been experiencing this problem in all my applications myself, and I am not sure how to proceed because I cannot find any "best practices" mentioned anywhere. Thanks.</P>]]>
   </description>
   <pubDate>Thu, 17 Mar 2005 09:32:41 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1961&amp;PID=5779&amp;title=docking-panes-focus-problem#5779</guid>
  </item> 
  <item>
   <title><![CDATA[Docking Panes - Focus Problem : Given the likelihood of focus...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1961&amp;PID=5776&amp;title=docking-panes-focus-problem#5776</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=884">DDJJ</a><br /><strong>Subject:</strong> 1961<br /><strong>Posted:</strong> 17 March 2005 at 9:03am<br /><br />Given the likelihood of focus issues when using the Docking Pane, it would be nice to see something, anything, in the help file on this topic.<IMG style="CURSOR: pointer" &#111;nclick="AddSmileyIc&#111;n'smileys/smiley24.gif'" alt=Ermm src="http://forum.codejock.com/smileys/smiley24.gif" border="0">]]>
   </description>
   <pubDate>Thu, 17 Mar 2005 09:03:04 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1961&amp;PID=5776&amp;title=docking-panes-focus-problem#5776</guid>
  </item> 
  <item>
   <title><![CDATA[Docking Panes - Focus Problem : I have read a few other posts...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=1961&amp;PID=5707&amp;title=docking-panes-focus-problem#5707</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=884">DDJJ</a><br /><strong>Subject:</strong> 1961<br /><strong>Posted:</strong> 13 March 2005 at 11:31pm<br /><br /><P>I have read a few other posts here regarding similar problems, particularly those where Boyd provides some good feedback.&nbsp; However, the problem persists, so...</P><P>Our app is using a pane configuration similar Microsoft Outlook 2003.&nbsp; A shortcut bar to the left (Pane A), a list pane to the right (Pane B...a codejock report control) with a "reading" pane beneath the list pane (Pane C).</P><P>The shortcut bar provides users with four alternative "views".&nbsp; Each time the user changes the view, Pane A is switched to a different PictureBox control containing different TaskPanel controls; Pane B generally continues to point to the same PictureBox control containing the codejock report control; and Pane C is ALWAYS switched to a different PictureBox control containing numerous standard windows controls.</P><P>To make matters more complicated, a fourth pane (Pane D) is generally located beneath Pane C and points to the handle of a PictureBox.&nbsp; This PictureBox control also has three additional PictureBox controls, each holding a CommandBar control.&nbsp; The reason I am doing it this way is so that I can use the PictureBox controls to place the left edge of the CommandBar control beyond the left edge of the Pane D picturebox control so as to hide the "space" that seems to show up to the left of codejock toolbars.</P><P>Obviously, if you've read this far, you would understand that I'm having some serious focus problems.&nbsp; I can't get focus to move from one pane to the next for the life of me.&nbsp; It seems particularly difficult, if not impossible, to get focus to move off of the pane containing the codejock report control.</P><P>Should all picturebox controls used have their "TabStop" property set to False at design time?&nbsp; Should all picture box controls have their "Visible" property set to False at design time?&nbsp;How should the same properties for the controls contained within each picturebox control be set at design time?&nbsp; Each time the user switches "Views", should I programatically go through and change the Visible property on the various picturebox controls no longer in use to False?</P><P>Any help trying to troubleshoot this focus problem is appreciated.&nbsp; Thanks!</P>]]>
   </description>
   <pubDate>Sun, 13 Mar 2005 23:31:09 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=1961&amp;PID=5707&amp;title=docking-panes-focus-problem#5707</guid>
  </item> 
 </channel>
</rss>