Site hosted by Angelfire.com: Build your free website today!
NAME
  HEX$, OCT$ Functions

SYNOPSIS
  HEX$(numeric-expression&)
  OCT$(numeric-expression&)
      _ numeric-expression&    Any numeric expression. The expression is
                               rounded to an integer or long integer before it
                               is evaluated.

DESCRIPTION
  HEX$ returns a hexadecimal string representation of a number.
  OCT$ returns an octal string representation of a number.

  Example:
      INPUT x
      a$ = HEX$ (x)
      b$ = OCT$ (x)
      PRINT x; "decimal is "; a$; " hexadecimal and "; b$; " in octal."

SEE ALSO
  none