TStringsAssign (Delphi)
Description
This example creates a string list, adds elements to it, and assigns the strings to the items of a combo box.
Code
procedure TForm1.Button1Click(Sender: TObject);
var
StringList: TStringList;
begin
StringList := TStringList.Create;
try
with StringList do begin
Add('This example uses A string List.');
Add('It is the easiest way to add strings');
Add('to a combobox''s list of strings.');
Add('Always remember TStrings.Create method');
Add('is abstract; So use TStringList.Create');
Add('method instead.');
end;
with ComboBox1 do begin
Width := 210;
Items.Assign(StringList);
ItemIndex := 0;
end;
finally
StringList.free;
end;
end;
Uses
- System.Classes.TStrings.Assign ( fr | de | ja )
- System.Classes.TStringList.Add ( fr | de | ja )