<?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 : Scrolling problem using xtpTabLayoutFixed</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Docking Pane : Scrolling problem using xtpTabLayoutFixed]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 13 May 2026 19:27:25 +0000</pubDate>
  <lastBuildDate>Tue, 06 May 2008 02:07:14 +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=10510</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[Scrolling problem using xtpTabLayoutFixed : Hi,  Modify some our sample...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=10510&amp;PID=34750&amp;title=scrolling-problem-using-xtptablayoutfixed#34750</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 10510<br /><strong>Posted:</strong> 06 May 2008 at 2:07am<br /><br />Hi,<DIV>&nbsp;</DIV><DIV>Modify some our sample with all&nbsp;your tweaks and send to <a href="mailto:support@codejock.com" target="_blank">support@codejock.com</A></DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Tue, 06 May 2008 02:07:14 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=10510&amp;PID=34750&amp;title=scrolling-problem-using-xtptablayoutfixed#34750</guid>
  </item> 
  <item>
   <title><![CDATA[Scrolling problem using xtpTabLayoutFixed : I am using xtpTabLayoutFixed along...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=10510&amp;PID=34733&amp;title=scrolling-problem-using-xtptablayoutfixed#34733</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3003">mrmathis</a><br /><strong>Subject:</strong> 10510<br /><strong>Posted:</strong> 05 May 2008 at 5:48pm<br /><br />I am using xtpTabLayoutFixed along with some other tweaks to display icon-only tabs on my panes when they are docked together.&nbsp; If I create several panes the row of tabs does not scroll over to as expected to the icon of the selected tab.&nbsp; This is true whether I set the selection manually or allow the default selection to persist.<DIV></DIV><DIV>&nbsp;</DIV><DIV>To see what I mean, edit the DynamicPanes sample as shown here:</DIV><DIV>&nbsp;</DIV><DIV><FONT face="Courier New, Courier, mono">void CMainFrame::OnManagerCreate3inwindow()<BR>{<BR>#if 0<BR>&nbsp;&nbsp;&nbsp; CXTPDockingPane* pwndPaneForm = CreatePane(RUNTIME_CLASS(CSimpleForm), _T("Form %i"), xtpPaneDockRight);<BR>&nbsp;&nbsp;&nbsp; CXTPDockingPane* pwndPaneEdit = CreatePane(RUNTIME_CLASS(CEditView), _T("Edit %i"), xtpPaneDockRight);<BR>&nbsp;&nbsp;&nbsp; CXTPDockingPane* pwndPaneList = CreatePane(RUNTIME_CLASS(CSimpleListView), _T("List %i"), xtpPaneDockRight);</FONT></DIV><DIV><FONT face="Courier New, Courier, mono">&nbsp;&nbsp;&nbsp; m_paneManager.AttachPane(pwndPaneEdit, pwndPaneForm);<BR>&nbsp;&nbsp;&nbsp; m_paneManager.AttachPane(pwndPaneList, pwndPaneForm);<BR>#else<BR>&nbsp;&nbsp;&nbsp; CXTPDockingPane* pwndPaneForm = CreatePane(RUNTIME_CLASS(CSimpleForm), _T("Form %i"), xtpPaneDockRight);<BR>&nbsp;&nbsp;&nbsp; if (CXTPDockingPaneTabbedContainer* pContainer = dynamic_cast&lt;CXTPDockingPaneTabbedContainer*&gt;(pwndPaneForm-&gt;GetContainer()))<BR>&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; pContainer-&gt;SetLayoutStyle(xtpTabLayoutFixed);<BR>&nbsp;&nbsp;&nbsp; }</FONT></DIV><DIV><FONT face="Courier New, Courier, mono">&nbsp;&nbsp;&nbsp; CXTPDockingPane* pwndPaneEdit = CreatePane(RUNTIME_CLASS(CEditView), _T("Edit %i"), xtpPaneDockRight);<BR>&nbsp;&nbsp;&nbsp; CXTPDockingPane* pwndPaneList = CreatePane(RUNTIME_CLASS(CSimpleListView), _T("List %i"), xtpPaneDockRight);<BR>&nbsp;&nbsp;&nbsp; CXTPDockingPane* pwndPaneEdit1 = CreatePane(RUNTIME_CLASS(CEditView), _T("Edit1 %i"), xtpPaneDockRight);<BR>&nbsp;&nbsp;&nbsp; CXTPDockingPane* pwndPaneList1 = CreatePane(RUNTIME_CLASS(CSimpleListView), _T("List1 %i"), xtpPaneDockRight);<BR>&nbsp;&nbsp;&nbsp; CXTPDockingPane* pwndPaneEdit2 = CreatePane(RUNTIME_CLASS(CEditView), _T("Edit2 %i"), xtpPaneDockRight);<BR>&nbsp;&nbsp;&nbsp; CXTPDockingPane* pwndPaneList2 = CreatePane(RUNTIME_CLASS(CSimpleListView), _T("List2 %i"), xtpPaneDockRight);<BR>&nbsp;&nbsp;&nbsp; CXTPDockingPane* pwndPaneEdit3 = CreatePane(RUNTIME_CLASS(CEditView), _T("Edit3 %i"), xtpPaneDockRight);<BR>&nbsp;&nbsp;&nbsp; CXTPDockingPane* pwndPaneList3 = CreatePane(RUNTIME_CLASS(CSimpleListView), _T("List3 %i"), xtpPaneDockRight);</FONT></DIV><DIV><FONT face="Courier New, Courier, mono">&nbsp;&nbsp;&nbsp; m_paneManager.AttachPane(pwndPaneEdit, pwndPaneForm);<BR>&nbsp;&nbsp;&nbsp; m_paneManager.AttachPane(pwndPaneList, pwndPaneForm);<BR>&nbsp;&nbsp;&nbsp; m_paneManager.AttachPane(pwndPaneEdit1, pwndPaneForm);<BR>&nbsp;&nbsp;&nbsp; m_paneManager.AttachPane(pwndPaneList1, pwndPaneForm);<BR>&nbsp;&nbsp;&nbsp; m_paneManager.AttachPane(pwndPaneEdit2, pwndPaneForm);<BR>&nbsp;&nbsp;&nbsp; m_paneManager.AttachPane(pwndPaneList2, pwndPaneForm);<BR>&nbsp;&nbsp;&nbsp; m_paneManager.AttachPane(pwndPaneEdit3, pwndPaneForm);<BR>&nbsp;&nbsp;&nbsp; m_paneManager.AttachPane(pwndPaneList3, pwndPaneForm);<BR>#endif<BR>}<BR></FONT></DIV><DIV>When I run "Create 3 in Window" the picture looks like this:</DIV><DIV><img src="https://forum.codejock.com/uploads/20080505_174311_TabsGet.png" border="0"></DIV><DIV>&nbsp;</DIV><DIV>when I expected it to have scrolled over to the last-created tab.&nbsp; Here's the expected picture achieved by manual scrolling:</DIV><DIV>&nbsp;</DIV><DIV><img src="https://forum.codejock.com/uploads/20080505_174800_TabsWant.png" border="0"></DIV><DIV>&nbsp;</DIV><DIV>I've tried this in both 11.2.0 and 12.0 beta.&nbsp; Is there anything that can be done to circumvent or fix this problem?</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Mon, 05 May 2008 17:48:52 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=10510&amp;PID=34733&amp;title=scrolling-problem-using-xtptablayoutfixed#34733</guid>
  </item> 
 </channel>
</rss>