Basic30 Language Reference
ui2a Function

Convert a uInteger into an ASCII string

Sub ui2a(st as String,x as uInteger)

Requirements

  1. This function requires the link time library "basic30.a".
  2. The flie <libs/basic30.bas> must be included in the Basic source to use this function.

Examples

#include <libs/basic30.bas>

Dim st(10) as String
Dim x as uInteger
ui2a(st,2034)		' st = "2034"