$CHAIN

$CHAIN


# Index Level $INCLUDE
Syntax $CHAIN {file.reference} item-id  
Category BASIC
Type Statement
Description continues FlashBASIC compilation in a different source item.

When the file.reference is omitted, the current file is assumed.

There is no limit to the number of "$chains", but any statements after a "$chain" command will be ignored.
Options
See Also statements & functions $INCLUDE
Example bp myprog
003 equ bell to char(7)
004 equ am to char(254), vm to char(253), svm to char(252)
005 open "cust" to customer.file
006 $chain prog

bp prog
002 read item1 from customer.file,"01234" else print bell
Warnings When statements are "$chained" to, the corresponding source lines are NOT visible from the FlashBASIC Debugger.
Compatibility D3 7.0
# Index Level $INCLUDE