ADDS THE ITEM T TO THE SYSTEM OBJECT NUMBER N
ACTION
The command ITEM_ADD N,T adds the text T as line (item) to the system object designated by its number N.
Each line (item) 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, SYNEDIT.
SYNTAX:
ITEM_ADD N,T
USE ERROR EXAMPLE
rem create a LIST
list 1
rem fill the LIST with 3 lines
item_add 1,"This is line 1"
item_add 1,"This is line 2"
item_add 1,"This is line 3"
ITEM_ADD
ITEM_ADD N,T
SEE ALSO
MEMO
MEMO_RICH
COMBO
LIST
DLIST
SYNEDIT
FILE_ADD
ITEM_INSERT
ITEM_DELETE
ITEM_SELECT
COUNT()
ITEM_READ$()
ITEM_INDEX$()
ITEM_INDEX()