
09.05.2013, 10:55
|
 |
LMD-DML
|
|
Регистрация: 12.07.2009
Адрес: Богородское
Сообщения: 3,025
Версия Delphi: D7E
Репутация: 1834
|
|
Код:
procedure TForm1.Button1Click(Sender: TObject);
var
i: integer;
begin
Memo1.Clear;
for i:= FileListBox1.TopIndex to FileListBox1.Count-1 do
if FileListBox1.Selected[i] then Memo1.Lines.Add(FileListBox1.Items.Strings[i]);
end;
|