Hi,
ich steh' wohl auf'm Schlauch.
Wenn ich die Routine ersetze und aus
Delphi-Quellcode:
begin
Result := ChildNodes['Person'] as IXMLPerson;
end;
wird
Delphi-Quellcode:
var
node : IXmlNode;
begin
node := ChildNodes.FindNode('Person', '');
Result := node as IXMLPerson;
end;
..., sagt Delphi "Interface nicht unterstützt".
(node ist hierbei übrigens nicht nil.)
LG Incocnito