See Also: UChar, String Functions, UCharArrayToString
Returns a DataFlex string which is a copy of the passed UChar value
UCharToString( {UCharValue} )
Where:
UCharToString returns a DataFlex string which is a copy of the passed UChar value.
This sample copies the UChar valu eucByte to the DataFlex string sValue, resulting in sValue containing the value "g".
Procedure Test
UChar ucByte
String sValue
Move (Ascii("g")) to ucByte
Move (UCharToString(ucByte)) to sValue
End_Procedure