ADDS THE CONTENT OF FILE F TO THE SYSTEM OBJECT NUMBER N
ACTION
The command FILE_ADD N,F adds the content of file F to the system object designated by its number N.
The file is added after the last line (at the end) of the system object.
The system object is of type :MEMO, MEMO_RICH,COMBO, LIST, DLIST.
SYNTAX:
FILE_ADD N,F
USE ERROR EXAMPLE
rem create a LIST
list 1
rem fill it with the content of a file
file_load 1,"list of names.txt"
rem add it one file
file_add 1,"list of names2.txt"
FILE_ADD
FILE_ADD N,F
SEE ALSO
MEMO
MEMO_RICH
COMBO
LIST
DLIST
ITEM_ADD
FILE_LOAD
CLEAR