home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1993 #2 / Image.iso / finance / tas515dm.zip / EXAMPLES.ZIP / XREF.TAS < prev   
Text File  |  1992-05-25  |  512b  |  17 lines

  1. { Utility to sort the symbol directories and cross-reference the
  2.   entries by symbol, full name, and datapath.  Allows easy detection
  3.   of duplicate entries in the entire database.  Allows fast access
  4.   in locating symbols and stock names.
  5.  
  6.   Written 5/25/92, author: Jim Camenos, Prodigy: VNGH10A               }
  7.  
  8. #max_quotes 1
  9. #output_file 'xref.lst'
  10. sortout(ticker,fullname,datapath);
  11. if last_ticker then
  12. begin
  13.    sorton(1,'A',3,'A');
  14.    sortget(v1,v2,v3);
  15.    sortprint('%s %s %s\n');
  16. end;
  17.