<?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 : Regarding Docking</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Docking Pane : Regarding Docking]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 13 May 2026 13:11:08 +0000</pubDate>
  <lastBuildDate>Tue, 17 Apr 2007 00:26:46 +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=6876</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[Regarding Docking : Thanks alot Oleg. ]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=6876&amp;PID=22012&amp;title=regarding-docking#22012</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2903">KumarCJ</a><br /><strong>Subject:</strong> 6876<br /><strong>Posted:</strong> 17 April 2007 at 12:26am<br /><br />Thanks alot Oleg.]]>
   </description>
   <pubDate>Tue, 17 Apr 2007 00:26:46 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=6876&amp;PID=22012&amp;title=regarding-docking#22012</guid>
  </item> 
  <item>
   <title><![CDATA[Regarding Docking : Hi,  For ToolkitPro you don&amp;#039;t...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=6876&amp;PID=21998&amp;title=regarding-docking#21998</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 6876<br /><strong>Posted:</strong> 16 April 2007 at 1:22pm<br /><br /><DIV>Hi,</DIV><DIV>&nbsp;</DIV><DIV>For ToolkitPro you don't need these lines.</DIV>]]>
   </description>
   <pubDate>Mon, 16 Apr 2007 13:22:42 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=6876&amp;PID=21998&amp;title=regarding-docking#21998</guid>
  </item> 
  <item>
   <title><![CDATA[Regarding Docking : Hi, We are integrating our application...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=6876&amp;PID=21980&amp;title=regarding-docking#21980</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2903">KumarCJ</a><br /><strong>Subject:</strong> 6876<br /><strong>Posted:</strong> 16 April 2007 at 5:35am<br /><br /><P>Hi,</P><P>We are integrating our application from code jock 4.2 to code jock 10.4.2.</P><P>We were using following code for enabling docking for menu and toolbar.<BR>using code jock 4.2.</P><DIV>&nbsp; <DIV>&nbsp;&nbsp;CMenu*&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; m_wndMenuBar;</DIV></DIV><DIV>&nbsp; CToolBar*&nbsp;&nbsp;&nbsp;&nbsp; m_wndToolBar;</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;&nbsp; m_wndMenuBar.EnableDocking(CBRS_ALIGN_ANY);<BR>&nbsp;&nbsp; m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);<BR></DIV><DIV>&nbsp;&nbsp; EnableDocking(CBRS_ALIGN_ANY);<BR></DIV><DIV>&nbsp;&nbsp; <FONT color=#ff0000>DockControlBar(&amp;m_wndMenuBar);<BR>&nbsp;&nbsp; DockControlBar(&amp;m_wndToolBar);</FONT></DIV><DIV>&nbsp;</DIV><DIV>When we are integrating it with code jock 10.4.2, code is some thing like below:</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;&nbsp; CXTPMenuBar* m_wndMenuBar;</DIV><DIV>&nbsp;&nbsp; CToolBar*&nbsp;&nbsp;&nbsp;&nbsp; m_wndToolBar;</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;&nbsp; m_wndMenuBar-&gt;EnableDocking(xtpFlagStretched);<BR>&nbsp;&nbsp;&nbsp;m_wndToolBar-&gt;EnableDocking(xtpFlagStretched );<BR></DIV><DIV>&nbsp; &nbsp;EnableDocking(CBRS_ALIGN_ANY);<BR></DIV><DIV><FONT color=#ff0000>//Replacement&nbsp;&nbsp;Needed for below line of code</FONT></DIV><DIV><FONT color=#ff0000></FONT><BR>&nbsp;&nbsp; <FONT color=#ff0000>//DockControlBar(&amp;m_wndMenuBar);<BR>&nbsp;&nbsp; //DockControlBar(&amp;pToolBar);</FONT></DIV><DIV><FONT color=#ff0000></FONT>&nbsp;</DIV><DIV><FONT color=#ff0000>//Replacement&nbsp;&nbsp;Needed for above line of code</FONT><BR></DIV><DIV>&nbsp;</DIV><DIV><FONT color=#333333>DockControlBar function take ref. to CMenu or CToolBar obj. </FONT></DIV><DIV><FONT color=#333333></FONT>&nbsp;</DIV><DIV><FONT color=#333333>what is the replacement and how i can replace these two lines of code, using code jock 10.4.2</FONT></DIV><DIV>&nbsp;</DIV><DIV>Due to this when I am maximizing the child window the minimise, restore and close&nbsp;button comes just after the help menu(last menu).</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>Pls help me out. </DIV><DIV>&nbsp;</DIV><DIV>Thanks,</DIV><DIV>KumarCJ</DIV>]]>
   </description>
   <pubDate>Mon, 16 Apr 2007 05:35:12 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=6876&amp;PID=21980&amp;title=regarding-docking#21980</guid>
  </item> 
 </channel>
</rss>