The following code shows how to convert a number into a float or string. dcltrans transaction TInit var fValue : float; nValue : number; sValue : String; begin fValue := float(nValue); //convert number to float sValue := string(nValue); //convert number to string end TInit; For more information on the conversion of data types please search for "Conversion" in the On-Line Help
↧