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

  1. /*
  2.    Listing 18.27  Append blank example
  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.  
  12. function cust_edit( nRecord,fld_array )
  13. LOCAL jj, fld_count := fcount()
  14. nRecord := if( nRecord=NIL,0,nRecord )
  15. if nRecord = 0
  16.    append blank
  17. else
  18.    goto nRecord
  19. endif
  20. for jj=1 to fld_count
  21.     Fieldput(jj,fld_array[jj])
  22. next
  23. return NIL
  24.  
  25. // end of file CHP1827.PRG
  26.