Б ";
Form1-> FileListLeft-> Cells [ColAttrib] [i] = "Атрибути";
Form1-> FileListLeft-> Cells [ColCreTime] [i] = "Створено";
Form1-> FileListLeft-> Cells [ColAccTime] [i] = "Відкрито";
Form1-> FileListLeft-> Cells [ColWriTime] [i] = "Змінений";
Form1-> FileListRight-> Cells [ColName] [i] = "Ім'я";
Form1-> FileListRight-> Cells [ColSize] [i] = "Розмір КБ ";
Form1-> FileListRight-> Cells [ColAttrib] [i] = "Атрибути";
Form1-> FileListRight-> Cells [ColCreTime] [i] = "Створено";
Form1-> FileListRight-> Cells [ColAccTime] [i] = "Відкрито";
Form1-> FileListRight-> Cells [ColWriTime] [i] = "Змінений";
i + +;
if (Panel == LEFT)// Якщо активна ліва панель
{
iter = DequeFindLeft.begin ();
Form1-> FileListLeft-> RowCount = 2 ;//Очищення вмісту таблиці,
// куди проводиться відображення
while (iter! = DequeFindLeft.end ())
{
StructFindTemp = * iter;
if (DirAttribSet.count (StructFindTemp.dwFileAttributes))// Відображення директорій
{// (У таблиці вище файлів)
StrucFindToFileProp (StructFindTemp, FileProperty);
Form1-> FileListLeft-> Cells [ColName] [i] = FileProperty.FileName;
Form1-> FileListLeft-> Cells [ColSize] [i] = FileProperty.FileSizeKb;
Form1-> FileListLeft-> Cells [ColAttrib] [i] = FileProperty.FileAttrib;
Form1-> FileListLeft-> Cells [ColCreTime] [i] = FileProperty.CreateTime;
Form1-> FileListLeft-> Cells [ColAccTime] [i] = FileProperty.AccessTime;
Form1-> FileListLeft-> Cells [ColWriTime] [i] = FileProperty.WriteTime;
Form1-> FileListLeft-> RowCount = Form1-> FileListLeft-> RowCount +1;
i + +;
}
iter + +;
}
iter = DequeFindLeft.begin ();
while (iter! = DequeFindLeft.end ())// Відображення файлів (у таблиці після директорій)
{
StructFindTemp = * iter;
if (DirAttribSet.count (StructFindTemp.dwFileAttributes) == 0)
{
StrucFindToFileProp (* iter, FileProperty);
Form1-> FileListLeft-> Cells [ColName] [i] = FileProperty.FileName;
Form1-> FileListLeft-> Cells [ColSize] [i] = FileProperty.FileSizeKb;
Form1-> FileListLeft-> Cells [ColAttrib] [i] = FileProperty.FileAttrib;
Form1-> FileListLeft-> Cells [ColCreTime] [i] = FileProperty.CreateTime;
Form1-> FileListLeft-> Cells [ColAccTime] [i] = FileProperty.AccessTime;
Form1-> FileListLeft-> Cells [ColWriTime] [i] = FileProperty.WriteTime;
Form1-> FileListLeft-> RowCount = Form1-> FileListLeft-> RowCount +1;
i + +;
}
iter + +;
}
if (i == 1)// Якщо ні файлів і паппок для відображення
{
Form1-> FileListLeft-> Cells [ColName] [i] = " 0";
Form1-> FileListLeft-> Cells [ColSize] [i] = " 0";
Form1-> FileListLe...