'FO'= |
Format Overflow Character |
Assigns the format overflow symbol/character you want returned as fill on format errors. Use the ASCII value of your character. For example, to assign the * (asterisk) as the overflow character, apply either 'FO'=42 or 'FO'=ASC("*").
'FO'=0 (zero). PxPlus returns Error #43: Format mask invalid.
In this example, PxPlus displays six asterisks instead of causing an error:
set_param 'FO'=asc("*")
print 123456.78:"##0.00"
******