<?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 : question about dockingpane</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Docking Pane : question about dockingpane]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 13 May 2026 10:08:06 +0000</pubDate>
  <lastBuildDate>Sun, 03 Sep 2006 21:36:17 +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=4953</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[question about dockingpane : I use xtp9.601 ]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4953&amp;PID=15438&amp;title=question-about-dockingpane#15438</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1966">oldmonster</a><br /><strong>Subject:</strong> 4953<br /><strong>Posted:</strong> 03 September 2006 at 9:36pm<br /><br />I use xtp9.601]]>
   </description>
   <pubDate>Sun, 03 Sep 2006 21:36:17 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4953&amp;PID=15438&amp;title=question-about-dockingpane#15438</guid>
  </item> 
  <item>
   <title><![CDATA[question about dockingpane : I have some textbox controls or...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4953&amp;PID=15431&amp;title=question-about-dockingpane#15431</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1966">oldmonster</a><br /><strong>Subject:</strong> 4953<br /><strong>Posted:</strong> 02 September 2006 at 11:22pm<br /><br />I have some textbox controls or listcontrol in Dlg1 and Dlg2,if the APP is running and Dlg2 not showed firstly, Only I click the tab label of Dlg2, it can be update, or else it cann't work.&nbsp; <BR>How to update the content of these controls by codes? <BR>Can you give me some codes?<BR>Thanks a lot.&nbsp; <DIV>&nbsp;</DIV><DIV>this is my codes:</DIV><DIV>MainFrm.h<BR>CXTPDockingPaneManager m_paneManager;<BR>CXTPDockingPane*&nbsp;&nbsp;&nbsp; pPane1;//pane1&nbsp;&nbsp;&nbsp;<BR>CDlg1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Dlg1;<BR>&nbsp;<BR>CXTPDockingPane*&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; pPane2;&nbsp;<BR>CDlg2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Dlg2;&nbsp;//pane2</DIV><DIV>MainFrm.cpp<BR>create Funtion<BR>pPane1= m_paneManager.CreatePane(IDR_PANE1,CRect(0, 0,240, 150), xtpPaneDockRight);<BR>if(!pPane1)<BR>{<BR>&nbsp;TRACE0("failed to create!\n");<BR>&nbsp;return -1;<BR>}</DIV><DIV>pPane2= m_paneManager.CreatePane(IDR_PANE2,CRect(0, 0,240, 150), xtpPaneDockRight);<BR>if(!pPane2)<BR>{<BR>&nbsp;TRACE0("failed to create!\n");<BR>&nbsp;return -1;<BR>}</DIV><DIV>m_paneManager.AttachPane(pPane1, pPane2);</DIV><DIV><BR>LRESULT CMainFrame::OnDockingPaneNotify(WPARAM wParam, LPARAM lParam)<BR>{<BR>&nbsp;&nbsp;&nbsp; if (wParam == XTP_DPN_SHOWWINDOW)<BR>&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CXTPDockingPane* pPane = (CXTPDockingPane*)lParam;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (!pPane-&gt;IsValid())<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; switch (pPane-&gt;GetID())<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;case IDR_PANE1:<BR>&nbsp;&nbsp;&nbsp;{<BR>&nbsp;&nbsp;&nbsp;&nbsp;if (!::IsWindow(Dlg1.m_hWnd))<BR>&nbsp;&nbsp;&nbsp;&nbsp;{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Dlg1.Create(IDD_DLG1, this);<BR>&nbsp;&nbsp;&nbsp;&nbsp;}<BR>&nbsp;&nbsp;&nbsp;&nbsp;pPane-&gt;Attach(&amp;Dlg1);<BR>&nbsp;&nbsp;&nbsp;&nbsp;break;<BR>&nbsp;&nbsp;&nbsp;}<BR>&nbsp;&nbsp;&nbsp;case IDR_PANE2:<BR>&nbsp;&nbsp;&nbsp;{<BR>&nbsp;&nbsp;&nbsp;&nbsp;if (!::IsWindow(Dlg2.m_hWnd))<BR>&nbsp;&nbsp;&nbsp;&nbsp;{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Dlg2.Create(IDD_DLG2, this);<BR>&nbsp;&nbsp;&nbsp;&nbsp;}<BR>&nbsp;&nbsp;&nbsp;&nbsp;pPane-&gt;Attach(&amp;Dlg2);<BR>&nbsp;&nbsp;&nbsp;&nbsp;break;<BR>&nbsp;&nbsp;&nbsp;}<BR>&nbsp;&nbsp;&nbsp;}<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return TRUE;<BR>&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp; return FALSE;<BR>}</DIV>]]>
   </description>
   <pubDate>Sat, 02 Sep 2006 23:22:52 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4953&amp;PID=15431&amp;title=question-about-dockingpane#15431</guid>
  </item> 
 </channel>
</rss>