Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Artful Two for Clipper 5.0 - Norton Guide http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]

Syntax

ALOAD( aD_ra[, aF_ra[, nFrom_pos[, nTo_pos ]]] )

Purpose

Fills an array with values derived from selected fields from the current
record of the current table.

Arguments

     aD_ra -- array to fill

     aF_ra -- array containing names of fields/field expressions
                    (defaults to the names of the fields in the current
                    table)

     nFrom_pos -- array element to start at (defaults to first element)

     nTo_pos -- array element to end at (defaults to last element)

Setup

aF_ra may contain fields or field expressions.

Example

     LOCAL size
     USE CUSTOMER
     size := FCOUNT()
     LOCAL values[ size ], fields[ size ]
     ALOAD( values, fields )
     AEVAL( values, { |x| QOUT( x ) } )

Returns

.T.

Side Effects

The elements of aD_ra parallel to the specified elements of aF_ra
will contain the values of the fields/expressions specified in aF_ra.

Artful Calls

MACROBLOCK

Source File

AA_ALOAD.PRG

Notes

None.

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson