
26.12.2007, 23:23
|
 |
Активный
|
|
Регистрация: 06.05.2007
Адрес: ГДЕ ТО В СОЛНЕЧНОЙ СИСТЕМЕ
Сообщения: 207
Репутация: 15
|
|
Код:
procedure TForm1.Button1Click(Sender: TObject);
var i:integer;
begin
for i:=0 to filelistbox1.Items.Count-1 do
begin
listview1.AddItem(filelistbox1.Items[i],self);
// или так listview1.AddItem(filelistbox1.Directory+filelistbox1.Items[i],self);
end;
end;
__________________
Кому я должен - всем прощаю!!!!
|