Language: NoFormat
Transferindo TStringList para TListBox...
var
list: TStringList;
begin
list := TStringList;
try
list.Add( 'Testando' );
ListBox1.Items.Assign( list );
finally
list.free;
end;
end;
Tags:
Description:
Método simples para transferir uma list(TStringList) para um ListBox1(TListBox).
Report Abuse
Subscribe
Discuss
What's new
What is it
New Snippet
Recent Snippets
My Snippets
Web Code
Search

