home *** CD-ROM | disk | FTP | other *** search
- /*
- Listing 21.3 Max() 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
- */
-
- LOCAL biggest :=0
- use PAYROLL new
- dbeval( {|| biggest := Max(biggest,PAYROLL->salary)} )
- return biggest
-
- // end of file CHP2103.PRG
-