home *** CD-ROM | disk | FTP | other *** search
- /*
- Listing.: 16.9 Add a record 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
- */
-
- memvar mId_code
- begin sequence
- append blank
- if neterr() // Check if append work ok
- ? "ERROR: Cannot add a record to the file..."
- inkey(500)
- break
- endif
- if rlock()
- replace CUSTOMER->id_code with mId_code
- unlock
- endif
- end sequence
-
- // end of file CHP1609.PRG
-