home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / pascal / library / dos / tjock / tot / demo / demdr4.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1991-02-11  |  405 b   |  21 lines

  1. program DemoDirFour;
  2. {demls4 - a user sortable directory listing}
  3.  
  4. Uses DOS, CRT,
  5.      totFAST, totLIST;
  6.  
  7. Var
  8.    ListWin:  ListDirSortObj;
  9.  
  10. begin
  11.    Screen.Clear(white,'░'); {paint the screen}
  12.    Screen.WriteCenter(25,white,' Press S or Right Mouse Button for Sort Options ');
  13.    with ListWin do
  14.    begin
  15.       Init;
  16.       ReadFiles('*.*',AnyFile);
  17.       Go;
  18.       Done;
  19.    end;
  20. end.
  21.