TLama

Untitled

Apr 12th, 2014
390
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Delphi 0.42 KB | None | 0 0
  1. uses
  2.   OXmlPDOM;
  3.  
  4. procedure TForm1.SubmitButtonClick(Sender: TObject);
  5. var
  6.   XMLNode: PXMLNode;
  7.   XMLDocument: IXMLDocument;
  8. begin
  9.   XMLDocument := CreateXMLDoc;
  10.   XMLDocument.LoadFromFile('C:\File.xml');
  11.  
  12.   if XMLDocument.DocumentElement.SelectNode('//categories', XMLNode) then
  13.   begin
  14.     XMLNode := XMLNode.AddChild('cat1');
  15.     XMLNode.Text := Edit1.Text;
  16.     XMLDocument.SaveToFile('C:\File.xml');
  17.   end;
  18. end;
Advertisement
Add Comment
Please, Sign In to add comment