| Home | All functions | Categories |
vuOctal(Long), CSTRING
Converts a LONG value into its octal representation.
| Parameter | Data Type | Description |
|---|---|---|
| LongValue | LONG | The number to convert to octal. |
A CSTRING containing the octal representation of LongValue.
LongValue = 1234
MESSAGE('Octal representation: ' & vuOctal(LongValue))
! Result: 2322
| Home | All functions | Categories |