home *** CD-ROM | disk | FTP | other *** search
- /*
- Listing 18.27 Append blank example
- Author: Joe Booth
- Excerpted from "Clipper 5: A Developer's Guide"
- Copyright (c) 1991 M&T Books
- 501 Galveston Drive
- Redwood City, CA 94063-4728
- (415) 366-3600
- */
-
-
- function cust_edit( nRecord,fld_array )
- LOCAL jj, fld_count := fcount()
- nRecord := if( nRecord=NIL,0,nRecord )
- if nRecord = 0
- append blank
- else
- goto nRecord
- endif
- for jj=1 to fld_count
- Fieldput(jj,fld_array[jj])
- next
- return NIL
-
- // end of file CHP1827.PRG
-