Re: Add Items to Delphi ComboBox


[ Related Articles and Replies ] [ DelphiLand FAQ ] [ Delphi Tutorials ]

Posted by jean claude servaye on January 28, 2002

In Reply to: Add Items to Delphi ComboBox posted by Drake on January 26, 2002

: How do I add items to a Delphi ComboBox.
: I don't want to use the String List Editor, mainly because I have to be able to pass the itme chosen at runtime to another object. A timer, I basically allowing the user to set the timer interval.

: Can anyone help me out?

combobox1.items.add('item1');
combobox1.items.add('item2');

etc

 


Related Articles and Replies:


[ DelphiLand FAQ ] [ Delphi Tutorials ]