Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Searching for xml threads

Jan
16
0
I'm interested in TCC's XML support, but when I search the forums for "xml" the response is "The search could not be completed because the search keywords were too short, too long, or too common." Is there a way to find xml-related threads?

By the way, here's what I'm trying to accomplish:
  • I need to read ConfigState.xml, modify one specific element, and rewrite the file. (sorry, I can't get the indentation to render properly)
<TextPad>
<Preferences>
<value name="View" type="blob">value to modify</value>
</Preferences>
</TextPad>
  • Then I need to read GUIConfig.xml, modify two specific elements, and rewrite the file.
<HKCU>
<SOFTWARE>
<Helios>
<TextPad-9.ENU>
<CustomLayout-0>
<BCGToolbarParameters>
<CommandsUsage>value to modify</CommandsUsage>
</BCGToolbarParameters>
<BCGToolBar-593980>
<Buttons>value to modify</Buttons>
<BCGToolBar-593980>
</CustomLayout-0>
</TextPad-9.ENU>
</Helios>
</SOFTWARE>
</HKCU>
 
Back
Top