Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- The Library for Clipper - <b>l_arcreate()</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
                                 L_ARCREATE()


Syntax:        L_ARCREATE(<expC>,<expN1>,<expN2>)



Purpose:       Creates a pseudo two dimensional array in Clipper.


Arguments:     <expC> is the name to be given to the two dimensional
               array.  The name of the array must not be longer than 8
               characters.

               <expN1> is the number of Rows the array will have.
               Maximum number of rows is 99.

               <expN2> is the number of Columns the array will have.
               Maximum number of columns is 99.


Returns:       A logical (.T.) if ok an error number if error.


Usage:         Two dimensional arrays are very useful for matrix
               operations such as screen manipulation. i.e. for
               storing screen co-ordinates.


Examples:      ? L_ARCREATE("arr1",20,10)    && Result .T.

               This example creates a two dimensional array called
               arr1 with 20 rows and 10 columns.


Language:      Clipper

See Also: L_ARUSE()

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