docs

Home All functions Categories

vuOctal(LongValue)

vuOctal(Long), CSTRING

Description

Converts a LONG value into its octal representation.

Parameters

Parameter Data Type Description
LongValue LONG The number to convert to octal.

Returns

A CSTRING containing the octal representation of LongValue.

Example

LongValue = 1234
MESSAGE('Octal representation: ' & vuOctal(LongValue))
! Result: 2322

Notes

Home All functions Categories