[<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
+---------------------------------+
|             SAVE TO             |
+---------------------------------+
SAVE TO <file>
        | TO MEMO <memo field>
        [ALL LIKE | EXCEPT <skel>]

-----------------------------------
Saves memory variables to a file or a memo field.
-----------------------------------

SAVE stores current memory variables and memory variable arrays in a
memory variable file or a memo field.

Use RESTORE FROM to load memory variables and arrays saved to a memory
variable file or a memo field back into memory.

TO <file>
        Saves memory variables to the specified file.  The default extension
for a memory variable file is .MEM.

TO MEMO <memo field>
        Saves memory variables to the specified memo field.

ALL LIKE <skel>
        If ALL LIKE <skel> is included, only those memory variables and arrays
that are LIKE the skeleton are saved.  You can include the wild card
characters ? and * in <skel>.  The question mark (?) indicates a single
character and asterisk (*) indicates 0 or more occurrences of any
character.

ALL EXCEPT <skel>
        If ALL EXCEPT <skel> is included, all memory variables and arrays
EXCEPT those that match the skeleton are saved.  You can include the
wild card characters ? and * in <skel>.  The question mark (?) indicates
a single character and asterisk (*) indicates 0 or more occurrences of
any character.

+---------------------------------+
|             Example             |
+---------------------------------+
val1 = 50
val2 = 'Hello'
SAVE TO temp
CLEAR MEMORY
val3 = DATE()
RESTORE FROM temp ADDITIVE
DISPLAY MEMORY LIKE val?

-----------------------------------

See Also:  PRIVATE, PUBLIC, RESTORE FROM, RELEASE

-----------------------------------

See Also: PRIVATE PUBLIC RESTORE FROM RELEASE
This page created by ng2html v1.05, the Norton guide to HTML conversion utility. Written by Dave Pearson