| global common | Index Level | non-fatal error condition |
| Syntax | COMMON /id/variable|array{,variable|array...} |
| Category | BASIC |
| Type | Definition |
| Description |
a global, common, FlashBASIC variable space used to store variables and arrays in the area identified by "id" . Named common space is initialized only at logon and released at logoff.
Named common space is common for all levels of the same process (i.e., level pushes, executes, filetime bridges & indexes, etc.) Variables and|or arrays can be used for communication between programs and subroutines providing inter-program communication. |
| Options | |
| See Also | global common COMMON |
| Example | common /expenses/ emp,date,category |
| Warnings | |
| Compatibility | D3 7.0 AP |
| global common | Index Level | non-fatal error condition |