Zitat von
marabu:
Zitat von
Christian18:
... Ich will das Attribut bei Caption einfach nur in einer String Variablen speichern.
das ist nicht so schwer:
Delphi-Quellcode:
begin
// ...
ShowMessage(
Xml.DocumentElement
.ChildNodes['
UMain']
.ChildNodes['
Label']
.AttributeNodes['
Caption'].NodeValue
);
// ...
end;
Hallo,
da kommt aber immer eine Fehlermeldung!!! Ungültige Zeigeroperation!
Delphi-Quellcode:
procedure TForm1.Button1Click(Sender: TObject);
var xml : TXMLDocument;
begin
xml:=TXMLDocument.Create(
nil);
xml.LoadFromFile('
D:\Project\Lang\Deu.lng');
xml.Active:=True;
ShowMessage(
Xml.DocumentElement.ChildNodes['
UMain'].ChildNodes['
Label'].AttributeNodes['
Caption'].NodeValue);
end;