System Parameters
'FO'= Format Overflow Character
 
Description 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("*"). For more information, see Data Format Masks.
 
Default 'FO'=0 (zero). ProvideX returns Error #43: Format mask invalid.
 
Example In the example below, ProvideX displays 6 asterisks instead of causing an error:
SET_PARAM 'FO'=ASC("*") PRINT 123456.78:"##0.00"
******