|
VADELIA |
|
|
|
(I) (C) |
Section for use
All
Syntax
INSERT_STD_RAD BookmarkName
Description
Defines the position where is inserted the source generated during the RAD program development corresponding to the BookmarkName bookmark.
This instruction is only used in the RAD templates source.
Bookmark names that can be used in the source code of a personalized RAD template are those defined in the corresponding basic RAD template.
The same bookmark can be found several times in a RAD template source code: the code generated by the RAD development will then be duplicated.
Example
In the DECL block of a RAD template source:
INSERT_STD_RAD DECL_PGM /* Insertion bookmark of variable declaration for the RAD development.
In the source of a program built by the RAD wizard from the template:
BEGIN_STD_RAD DECL_PGM
/* Definition of the work variables
ALPHA(15) MODE
NUM_BIN_2 ANSWER_MSG
NUM_E(15,0) SQL_RET_CODE
/* Definition of the list loading
LOADING LDG_RADORDER ...
/* Definition of combo boxes loadings
LOADING LDG_RADCUSTOMER ...
END_STD_RAD DECL_PGM