VAN
ListView1.Items.BeginUpdate;
probeer
voor I: = 0 aan LoopNodes.length -1
met ListView1.Items.add beginnen
Titel: = LoopNodes [I] .attributes.getNamedItem („Naam“) .nodeValue;
SubItems.Add (LoopNodes [I] .attributes.getNamedItem („Sn“) .nodeValue);
eind;
tot slot
ListView1.Items.EndUpdate;
eind;
AAN
voor I: = 0 aan LoopNodes.length -1
begin
listbox1.Items.Add (LoopNodes [I] .attributes.getNamedItem („Naam“) .nodeValue + ' '+ ^1 + LoopNodes [I] .attributes.getNamedItem („Sn“) .nodeValue);
eind;
|