Registriert seit: 5. Mai 2006
Ort: Velbert
246 Beiträge
Delphi 2006 Professional
|
AW: Zugriff auf XML Attribute mit '@'
16. Jun 2010, 09:45
Guter Tipp.
Über:
Delphi-Quellcode:
Node:= iXmlMldList.Nodes[ix];
iXmlAttributList := Node.AttributeNodes;
if (iXmlAttributList.Count > 0) then
begin
// ID
AttribNode := iXmlAttributList[0];
aXmlTimeTexteDe[ix+1].sId := AttribNode.Text;
// Display
AttribNode := iXmlAttributList[1];
aXmlTimeTexteDe[ix+1].sDisplay := AttribNode.Text;
// Std
AttribNode := iXmlAttributList[2];
aXmlTimeTexteDe[ix+1].sStd := AttribNode.Text;
// Dlt
AttribNode := iXmlAttributList[3];
aXmlTimeTexteDe[ix+1].sDlt := AttribNode.Text;
// Index
AttribNode := iXmlAttributList[4];
aXmlTimeTexteDe[ix+1].iIndex := strtointdef(AttribNode.Text, -1);
// DisplayID
AttribNode := iXmlAttributList[5];
aXmlTimeTexteDe[ix+1].sDisplayID := AttribNode.Text;
end;
klappt es.
Danke.
Holger Glück findet sich nicht im Code
Gefahren werden ist nur solange schön wie man selbst nicht lenken möchte ...
|