Zloy_Gelud сорри но у меня мозгов не хватает чтоб твой код правильно вписать
пока код был:
Код: tSelected = ListBox.GetSelected("ListBox1");
if tSelected then
ListBox.AddItem("ListBox2", "...", "");
for nTableIndex, nListBoxIndex in tSelected do
local tMasks={'*.jpg', '*.bmp', '*.gif', '*.png'};
for n, cMask in tMasks do
_SearchFile= ListBox.GetItemData("ListBox1", nListBoxIndex);
tFileList = File.Find(_SearchFile.."", cMask, false, true, nil);
if (tFileList) then
for n, sFilePath in tFileList do
ListBox.AddItem("ListBox2", String.SplitPath(sFilePath).Filename..String.SplitPath(sFilePath).Extension, sFilePath);
end
end
end
end
end