# list-obj command

The list-obj BASIC program outputs descriptive
internal information about programs compiled for BASIC and FlashBASIC.

Without any options, the list-obj command
outputs information on the bp file.

## Syntax

```
list-obj {file.reference}{(options}
```

## Parameter(s)

| options | e | Outputs BASIC frame usage, FlashBASIC frame usage, total frame usage, beginning FID, and release version last compiled. |
| --- | --- | --- |
| p | Directs output to the spooler. | |
| r | Includes runtime statistics in the output. | |
The report includes these headings:

| date | Last compile date |
| --- | --- |
| time | Last compile time |
| frames | Total frame usage |
| port | Port number program was last compiled on |
| user | User name who last compiled program |
| account | Account that user was logged onto when program was last compiled |

 If the r option is specified, these
 additional headings are included in the report:

| run date | The last date the current pick object code was run. |
| --- | --- |
| run time | The last time the current pick object code was run. |
| run count | Total number of times the current pick object code has run since being compiled. |

 Note: Subroutines running in FlashBasic mode are not stamped and will display as 12/31/67
 00:00:00 0.

## Example(s)

```
list-obj bp (e
```
Using the e option, the report includes
these headings:

| pick.sz | Number of frames of standard pick object code. |
| --- | --- |
| flash.sz | Number of frames of ’flashed’ object code. |
| frames | Total number of frames |
| start fid | Starting frame number |
| release | Release level in affect when the program was compiled. |

## See also

- [c/acct](https://d3codex.com/attributedefiningitem/c-acct/)
- [c/bytes](https://d3codex.com/attributedefiningitem/c-bytes/)
- [c/code](https://d3codex.com/attributedefiningitem/c-code/)
- [c/date](https://d3codex.com/attributedefiningitem/c-date/)
- [c/fid](https://d3codex.com/attributedefiningitem/c-fid/)
- [c/flash](https://d3codex.com/attributedefiningitem/c-flash/)
- [c/options](https://d3codex.com/attributedefiningitem/c-options/)
- [c/port](https://d3codex.com/attributedefiningitem/c-port/)
- [c/release](https://d3codex.com/attributedefiningitem/c-release/)
- [c/size](https://d3codex.com/attributedefiningitem/c-size/)
- [c/time](https://d3codex.com/attributedefiningitem/c-time/)
- [c/total](https://d3codex.com/attributedefiningitem/c-total/)
- [c/user](https://d3codex.com/attributedefiningitem/c-user/)
- [u222d user exit](https://d3codex.com/pickbasic-flashbasic/u222d-user-exit/)

---
Source: https://d3codex.com/tcl/list-obj-command/ - part of the D3Codex reference.
