Привет.
Можно ли загрузить все находящиеся файлы в ListBox-е в ListView?
Примерно так как из ListBox1 в ListBox2:
Код:
var
Aric : array of String;
i: integer;
begin
SetLength(Aric, ListBox1.Items.Count);
for I := 0 to ListBox1.Items.Count - 1 do
Aric[i]:= ListBox1.Items.Strings[i];
for i:= 0 to ListBox1.Items.Count -1 do
listbox2.Items.Add(Aric[i]);
end;