Introduction | Language Structure | IB Statements | File System | Comet 32 Runtime | Index |
Mnemonic:
| (MC) |
| Hex equivalent: | "@0401@" |
| Discussion: |
Remember cursor.
The (MC) control code saves the current location of the cursor for subsequent use with the "restore cursor" control code. See Restore Cursor (RC). |
| Example: |
a. 100 FORMAT (MC) . PRINT (0,100) b. PRINT (0) (MC)This example shows how to use the remember cursor control code. When the PRINT statement is executed, the current position of the cursor will be saved by Comet. Subsequently, the cursor can be repositioned to this location with the (RC) control code. |