-
Здравствуйте!
Буду краток проблема с кодом:
это работает:....
ListBox1.AddDirList(DirPath + {$IFDEF LIN} '*' {$ELSE} '*.*' {$ENDIF}, 0 )
а это НЕТ:....
TreeView1.AddDirList(DirPath + {$IFDEF LIN} '*' {$ELSE} '*.*' {$ENDIF}, 0 );
.........
это также работает:....
begin
TreeView1.TVInsert(i, j, tmpName)
end;
За ответ заранее благодарен. -
mdw © (11.01.08 12:16) [1]Открываем KOL.pas, находим AddDirList и читаем:
procedure AddDirList( const Filemask: KOLString; Attrs: DWORD );
{* |<#listbox>
|<#combo>
Can be used only with listbox and combobox - to add directory list items,
filtered by given Filemask (can contain wildcards) and Attrs. Following
flags can be combined in Attrs: -
Спасибо!