This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!
Oct Function Example
This example uses the
Oct function to return the octal value of a number.
Dim MyOct
MyOct = Oct(
4)
' Returns 4.
MyOct = Oct(
8)
' Returns 10.
MyOct = Oct(
459)
' Returns 713.