home *** CD-ROM | disk | FTP | other *** search
- /*
- Listing 23.1 Find_memos()
- 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
- */
-
- //───── NOTE: must compile with the /N option!
-
- function Find_memos(cString,nField)
- LOCAL arr_:={}
- go top
- while !eof()
- if cString $ Fieldget(nField)
- Aadd(arr_,recno())
- endif
- skip +1
- enddo
- return arr_
-
- // end of file CHP2301.PRG
-