Hi
habe das jetzt selbst gelöst!
Delphi-Quellcode:
while not (acc = nil) do begin
i := i + 1;
//acc := acc.NextSibling;
if acc.HasAttribute('accdevindex') then begin
if acc.Attributes['accdevindex'] = i then begin
test := acc.ChildNodes.First.GetAttributeNS('controllingresource','');
debug('CONTROLLINGRESSOURCE FOR INDEX '+inttostr(i)+': '+test);
end;
acc := acc.NextSibling;
end;
end;
LG