home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a012 / 1.ddi / CHAP18.EXE / CHP1815.PRG < prev    next >
Encoding:
Text File  |  1991-04-30  |  750 b   |  31 lines

  1. /*
  2.    Listing 18.15  Simple Export()
  3.    Author: Joe Booth
  4.    Excerpted from "Clipper 5: A Developer's Guide"
  5.    Copyright (c) 1991 M&T Books
  6.                       501 Galveston Drive
  7.                       Redwood City, CA 94063-4728
  8.                       (415) 366-3600
  9. */
  10.  
  11. function sexport(cFilename)
  12. LOCAL nFields:=fcount()        // Determine number of fields
  13. LOCAL jj
  14. LOCAL oldaltfile := set(_SET_ALTFILE, cFilename)
  15. LOCAL oldalt := set(_SET_ALTERNATE, .T.)
  16. go top
  17. while !eof()
  18.    for jj = 1 to nFields
  19.       ?? fieldget(jj),","
  20.    next
  21.    ?
  22.    skip +1
  23. enddo
  24. close alternate
  25. //───── restore previous ALTERNATE settings
  26. set(_SET_ALTERNATE, oldalt)
  27. set(_SET_ALTFILE, oldaltfile)
  28. return nil
  29.  
  30. // end of file CHP1815.PRG
  31.