home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / progm / tot5.zip / DEMDR4.PAS < prev    next >
Pascal/Delphi Source File  |  1991-02-11  |  405b  |  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.