home *** CD-ROM | disk | FTP | other *** search
- /*
- Listing 18.24 Scatter()
- 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 Scatter( nRec_num )
- LOCAL numfld:=fcount(),jj,retarry_:={}
- nRec_num := if(nRec_num=NIL,Recno(),nRec_num)
- goto nRec_num
- for jj = 1 to numfld
- Aadd(retarry_,fieldget(jj))
- next
- return retarry_
-
- // end of file CHP1824.PRG
-