<?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 : Saving Toolbars and Dockable Panes to XML file</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Toolkit Pro : Saving Toolbars and Dockable Panes to XML file]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sun, 05 Apr 2026 13:48:09 +0000</pubDate>
  <lastBuildDate>Tue, 07 Nov 2006 17:36:42 +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=5410</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[Saving Toolbars and Dockable Panes to XML file : OK, thank you. It&amp;#039;s working...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=5410&amp;PID=17115&amp;title=saving-toolbars-and-dockable-panes-to-xml-file#17115</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2474">eclipse</a><br /><strong>Subject:</strong> 5410<br /><strong>Posted:</strong> 07 November 2006 at 5:36pm<br /><br />OK, thank you. It's working now.]]>
   </description>
   <pubDate>Tue, 07 Nov 2006 17:36:42 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=5410&amp;PID=17115&amp;title=saving-toolbars-and-dockable-panes-to-xml-file#17115</guid>
  </item> 
  <item>
   <title><![CDATA[Saving Toolbars and Dockable Panes to XML file : Here sample:  CXTPPropExchangeXMLNode...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=5410&amp;PID=17059&amp;title=saving-toolbars-and-dockable-panes-to-xml-file#17059</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 5410<br /><strong>Posted:</strong> 06 November 2006 at 7:18am<br /><br />&nbsp;Here sample:<DIV>&nbsp;</DIV><DIV>CXTPPropExchangeXMLNode px(TRUE, NULL, _T("Application"));<BR>pxRootNode.LoadFromFile( sFile.c_str() ) );<BR></DIV><DIV>CXTPPropExchangeSection secGuiState(pxRootNode.GetSection(_T("GuiState")));<BR></DIV><DIV>&nbsp;</DIV><DIV>&nbsp;// read/write to GuiState</DIV><DIV>&nbsp;&nbsp;PX_DWord(&amp;secGuiState, _T("Version"), m_dwVersion, 0);<BR></DIV>]]>
   </description>
   <pubDate>Mon, 06 Nov 2006 07:18:00 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=5410&amp;PID=17059&amp;title=saving-toolbars-and-dockable-panes-to-xml-file#17059</guid>
  </item> 
  <item>
   <title><![CDATA[Saving Toolbars and Dockable Panes to XML file : Ok, thank you. Serializing the...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=5410&amp;PID=17057&amp;title=saving-toolbars-and-dockable-panes-to-xml-file#17057</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2474">eclipse</a><br /><strong>Subject:</strong> 5410<br /><strong>Posted:</strong> 06 November 2006 at 7:10am<br /><br />Ok, thank you. Serializing the window placement seems to work but there is another question. To make it short: How can I access the GuiState node for reading in the following xml file:<br><br>&lt;Application&gt;<br>&nbsp; &lt;OtherData&gt;<br>&nbsp; &lt;/OtherData&gt;<br><br>&nbsp; &lt;GuiState&gt;<br>&nbsp; ...<br>&nbsp; &lt;/GuiState&gt;<br>&lt;/Application&gt;<br><br>Where OtherData is completeley unrelated to the XTremeToolkit Pro. So far i have tried using:<br><br>CXTPPropExchangeXMLNode px(TRUE, NULL, VM_XML_NODE);<br>pxRootNode.LoadFromFile( sFile.c_str() ) );<br>CXTPPropExchangeXMLNode pxGuiNode(TRUE, pxRootNode.GetSectionNode(), _T("GuiState"));<br><br>hoping to get access to the GUI node. This fails because it seems to create a new empty node.&nbsp; The documentation is not very helpfull in this case. Examples like the following won't help me because they seem to imply the xml stores the data in its root node.<br><br>CXTPPropExchangeXMLNode px(TRUE, 0, _T("Settings"));<br>if (px.LoadFromFile(m_strIniFileName))<br>{    <br>&nbsp;&nbsp;&nbsp; m_wndTaskPanel.GetGroups()-&gt;DoPropExchange(&amp;px);<br>}<br><br>Regards,<br>Ingo<br>]]>
   </description>
   <pubDate>Mon, 06 Nov 2006 07:10:32 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=5410&amp;PID=17057&amp;title=saving-toolbars-and-dockable-panes-to-xml-file#17057</guid>
  </item> 
  <item>
   <title><![CDATA[Saving Toolbars and Dockable Panes to XML file : Hi,  See in help PX_Blob method...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=5410&amp;PID=16994&amp;title=saving-toolbars-and-dockable-panes-to-xml-file#16994</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 5410<br /><strong>Posted:</strong> 03 November 2006 at 10:51am<br /><br /><P>Hi,</P><DIV>&nbsp;</DIV><DIV>See in help PX_Blob method and CXTPPropExchange class</DIV>]]>
   </description>
   <pubDate>Fri, 03 Nov 2006 10:51:25 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=5410&amp;PID=16994&amp;title=saving-toolbars-and-dockable-panes-to-xml-file#16994</guid>
  </item> 
  <item>
   <title><![CDATA[Saving Toolbars and Dockable Panes to XML file : Can you tell me if there is a...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=5410&amp;PID=16992&amp;title=saving-toolbars-and-dockable-panes-to-xml-file#16992</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2474">eclipse</a><br /><strong>Subject:</strong> 5410<br /><strong>Posted:</strong> 03 November 2006 at 9:50am<br /><br />Can you tell me if there is a way to save the Window placement using the same streaming machanism as for the control bars? So far I could only find Mehtods storing the data to the registry (LoadPlacement, SavePlacement). The WindowPos example uses SaveWindowPos(this), but the documentation does not tell where it stores the position.<br>I would like to store it in an xml file but dont know how. Any hints are appreciated.<br><br>Regards,<br>Ingo<br>]]>
   </description>
   <pubDate>Fri, 03 Nov 2006 09:50:22 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=5410&amp;PID=16992&amp;title=saving-toolbars-and-dockable-panes-to-xml-file#16992</guid>
  </item> 
  <item>
   <title><![CDATA[Saving Toolbars and Dockable Panes to XML file : Thank you, that is what i was...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=5410&amp;PID=16976&amp;title=saving-toolbars-and-dockable-panes-to-xml-file#16976</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2474">eclipse</a><br /><strong>Subject:</strong> 5410<br /><strong>Posted:</strong> 03 November 2006 at 3:13am<br /><br />Thank you, that is what i was looking for.]]>
   </description>
   <pubDate>Fri, 03 Nov 2006 03:13:22 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=5410&amp;PID=16976&amp;title=saving-toolbars-and-dockable-panes-to-xml-file#16976</guid>
  </item> 
  <item>
   <title><![CDATA[Saving Toolbars and Dockable Panes to XML file : Hello, Check Samples\UserInterface\GUI_Whidbey...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=5410&amp;PID=16959&amp;title=saving-toolbars-and-dockable-panes-to-xml-file#16959</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 5410<br /><strong>Posted:</strong> 02 November 2006 at 11:37am<br /><br />Hello,<DIV>Check Samples\UserInterface\GUI_Whidbey&nbsp; - Toolbars/Panes and Toolbox are stored to xml file.</DIV>]]>
   </description>
   <pubDate>Thu, 02 Nov 2006 11:37:40 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=5410&amp;PID=16959&amp;title=saving-toolbars-and-dockable-panes-to-xml-file#16959</guid>
  </item> 
  <item>
   <title><![CDATA[Saving Toolbars and Dockable Panes to XML file : Hi,I&amp;#039;m currently doing a...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=5410&amp;PID=16952&amp;title=saving-toolbars-and-dockable-panes-to-xml-file#16952</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2474">eclipse</a><br /><strong>Subject:</strong> 5410<br /><strong>Posted:</strong> 02 November 2006 at 9:46am<br /><br />Hi,<br><br>I'm currently doing a project for a company. We decided it would be best to use the Xtreme toolkit pro for a project.&nbsp; The application manages different project files. Toolbar positions as well as dockable pane visibilities. I need to be able to store the docking state in a separate file preferably an xml file.&nbsp; Is this easily possible if so could anyone give me a hint where to look? <br>So far I found ways to save the state to the registry or an ini file. I have found the Pane example that allows saving the pane state to a xml file. Iwould need both saving pane positions and toolbar positions to a xml file or if this is not possible to a ini file of my choice.<br><br>Thanks,<br>Ingo<br>]]>
   </description>
   <pubDate>Thu, 02 Nov 2006 09:46:32 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=5410&amp;PID=16952&amp;title=saving-toolbars-and-dockable-panes-to-xml-file#16952</guid>
  </item> 
 </channel>
</rss>