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_arsave()</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
                                 L_ARSAVE()


Syntax:        L_ARSAVE(<expC>,<array>,<expN1>,<expN2>)


Purpose:       Saves a Clipper array to disc.


Arguments:     <expC> is the name of the array to be saved.

               <array> is the array itself.

               <expN1> is the point within the array at which to start
               saving to disc. 0 defaults to the start of the array.

               <expN2> is the point within the array at which to stop
               saving to disc. 0 defaults to the end of the array.


Returns:       A logical (.T.) is successful.


Usage:         To enable arrays to be saved to disc. It is not
               possible to save arrays to a .MEM file.



Examples:      DECLARE arr1[30]
               ? L_ARSAVE("arr1",arr1,0,0)        && Result: .T.

               ? L_ARSAVE("arr1",arr1,1,15)       && Result: .T.


Notes:         The array is saved to disc as <arrayname>.ARR . Any
               previous save of an array with the same name will be
               overwritten.


Language:      Clipper

See Also: L_ARESTORE()

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