Introduction | Language Structure | IB Statements | File System | Comet 32 Runtime | Index |
Mnemonic:
| (EN) |
| Hex equivalent: | "@0E06@" |
| Discussion: |
Enter normal mode.
The (EN) control code sets the video display in normal mode. The location of displayed information, the placement of the cursor, and the places where data is transmitted are determined by the FORMAT statements in the program. The alternative to normal mode is typewriter mode. |
| Example: |
a. 100 FORMAT (EN);(SB);"CUSTOMER INQUIRY",@(10,0) . PRINT (0,100) b. PRINT (0) (EN);(SB);"CUSTOMER INQUIRY",@(10,0)This example shows how to set normal mode, either at the beginning of a FORMAT statement or within a PRINT statement. The additional controls set background mode and display a heading at column 10, row 0. |