home *** CD-ROM | disk | FTP | other *** search
- ********************
-
- PROCEDURE Storarray
-
- PARAMETERS _storea, _storeb, _storec, _stored, _storee
-
- * _storea is the name of the array to work with
- * _storeb is the name of the database or work area to work with
- * _storec is the record number to work with; 0 means to APPEND BLANK
- * _stored is the field number to begin to work with
- * _storee is the number of fields to perform this operation with.
-
- DO CASE
- CASE PCOUNT() = 4
- _storee = 0
- CASE PCOUNT() = 3
- _stored = ""
- _storee = 0
- CASE PCOUNT() = 2
- _storec = 0
- _stored = ""
- _storee = 0
- CASE PCOUNT() = 1
- _storeb = ""
- _storec = 0
- _stored = ""
- _storee = 0
- OTHERWISE
- RETURN
- ENDCASE
-
- R_S_ARRAY(.F., _storea, _storeb, _storec, _stored, _storee)
-
- * End of File
-
-