[<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
    SaveArray()

         Saves an array to file

    Syntax:

         SaveArray( aArray, cFile, @nError ) -> Nil

         aArray   : The array to be saved
         cFile    : The file to be created
         nError   : The error code returned by DOS. 0 there is no error.

    Description:

         Saves any kind of array data except as logic for the objects.

    Return:

         Nothing.

    Example:

         SaveArray ( { 23, "Hello world", { 12, 32 } }, "Fast.arr", @nErr )
         If nErr == 0
           Message ( "Ok" )
         Else
           Message ( "DOS error number " + Str ( nErr ) )
         EndIf

See Also: RestArray()
This page created by ng2html v1.05, the Norton guide to HTML conversion utility. Written by Dave Pearson