<?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 : Create initial hidden pane ???</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Docking Pane : Create initial hidden pane ???]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 13 May 2026 02:59:24 +0000</pubDate>
  <lastBuildDate>Mon, 17 Oct 2005 03:04:36 +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=3026</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[Create initial hidden pane ??? : Hi Oleg!  this way the pane...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=3026&amp;PID=9071&amp;title=create-initial-hidden-pane#9071</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=633">hpesata</a><br /><strong>Subject:</strong> 3026<br /><strong>Posted:</strong> 17 October 2005 at 3:04am<br /><br />Hi Oleg!<br><br>this way the pane probably might shortly get visible and disappearafter the Close() call ?! I managed it now via closing floating panesbefore shutding down my app.<br>after I reload my app they appear floating again when I show them.<br><br>closing a pane seems to be the only way to "hide" a pane. Hiding itdoesnt make the pane-window disappear (in case of a floating pane).<br><br>regards,<br>Hans<br><br>]]>
   </description>
   <pubDate>Mon, 17 Oct 2005 03:04:36 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=3026&amp;PID=9071&amp;title=create-initial-hidden-pane#9071</guid>
  </item> 
  <item>
   <title><![CDATA[Create initial hidden pane ??? : use m_paneManager.FindPane to...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=3026&amp;PID=9041&amp;title=create-initial-hidden-pane#9041</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 3026<br /><strong>Posted:</strong> 14 October 2005 at 1:59am<br /><br /><P>use m_paneManager.FindPane to get pointer and call pPane-&gt;Close(); to close it.</P>]]>
   </description>
   <pubDate>Fri, 14 Oct 2005 01:59:21 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=3026&amp;PID=9041&amp;title=create-initial-hidden-pane#9041</guid>
  </item> 
  <item>
   <title><![CDATA[Create initial hidden pane ??? : Hi!  thanx for your reply!  I...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=3026&amp;PID=9033&amp;title=create-initial-hidden-pane#9033</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=633">hpesata</a><br /><strong>Subject:</strong> 3026<br /><strong>Posted:</strong> 13 October 2005 at 8:46am<br /><br />Hi!<br><br>thanx for your reply!<br><br>I cant use your approach, because my problem occurs wehn I load a <br>docking pane layout from the registry which creates the panes.<br>I need a way to to set the visibility state of my panes AFTER they arecreated either wiht CreatePane() or via the docking pane layout.<br><br>regards,<br>Hans<br><br>]]>
   </description>
   <pubDate>Thu, 13 Oct 2005 08:46:12 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=3026&amp;PID=9033&amp;title=create-initial-hidden-pane#9033</guid>
  </item> 
  <item>
   <title><![CDATA[Create initial hidden pane ??? : this is how I create my Panes...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=3026&amp;PID=9032&amp;title=create-initial-hidden-pane#9032</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1011">Barto</a><br /><strong>Subject:</strong> 3026<br /><strong>Posted:</strong> 13 October 2005 at 8:16am<br /><br /><P>this is how I create my Panes in CMainFrame::OnCreate()</P><P>&nbsp;m_paneManager.CreatePane(IDR_PANE_OBJ_PROPERTIES, CRect(0, 0, 300, 120), xtpPaneDockRight)-&gt;Close();<BR>&nbsp;m_paneManager.CreatePane(IDR_PANE_OBJ_NEW, CRect(0, 0, 95, 120), xtpPaneDockLeft)-&gt;Close();<BR>&nbsp;m_paneManager.CreatePane(IDR_PANE_OBJ_LIST, CRect(0, 0, 95, 120), xtpPaneDockLeft)-&gt;Close();<BR></P><P>this way they are immediately hidden. i don't see them popping up even once...</P>]]>
   </description>
   <pubDate>Thu, 13 Oct 2005 08:16:05 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=3026&amp;PID=9032&amp;title=create-initial-hidden-pane#9032</guid>
  </item> 
  <item>
   <title><![CDATA[Create initial hidden pane ??? : Hi!  XTP 9.70  We have a frame-window...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=3026&amp;PID=9028&amp;title=create-initial-hidden-pane#9028</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=633">hpesata</a><br /><strong>Subject:</strong> 3026<br /><strong>Posted:</strong> 13 October 2005 at 4:10am<br /><br />Hi!<br><br>XTP 9.70<br><br>We have a frame-window and 3 panes. the frame-window and the panes<br>reside in different MFC extension Dlls, and I would like to display all<br>after the loading process is completed at once. I am saving the pane-layout<br>and when I reload the layout the panes get visible BEFORE the frame-window gets displayed.<br><br>how can I initially set the panes hidden ?<br><br>any help with this would be greatly appreciated,<br>thanx in advance!<br><br>regards,<br>Hans<br><br>]]>
   </description>
   <pubDate>Thu, 13 Oct 2005 04:10:10 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=3026&amp;PID=9028&amp;title=create-initial-hidden-pane#9028</guid>
  </item> 
 </channel>
</rss>