Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   XML (https://www.delphipraxis.net/46-xml/)
-   -   Delphi combobox mit xml (https://www.delphipraxis.net/42493-combobox-mit-xml.html)

mav 19. Mär 2005 17:49


combobox mit xml
 
ich wollte eigendlich meine combobox mit dem inhalt einer .xml füttern, jedoch will delphi das nicht :D

Delphi-Quellcode:
for i:=0 to setts.length - 1 do begin
  subNode := setts.item[i].selectSingleNode('name');
  ComboBox3.AddItem(subNode.text);
  end;

mav 19. Mär 2005 18:14

Re: combobox mit xml
 
habs herausgefunden :D

Delphi-Quellcode:
for i:=0 to setts.length - 1 do begin
  ComboBox3.Items.Add(setts.item[i].selectSingleNode('name').text);
  end;


Alle Zeitangaben in WEZ +1. Es ist jetzt 22:20 Uhr.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024 by Thomas Breitkreuz