> Does anyone know if you can use from property > settings to retrieve an integer? I have used this > setting for a text field but I need to extract an > integer field
You get the value the same way, but then run it through the INT function to convert it to an integer: SET VAR vMyInteger = (INT(.vMyTextValue)) -- Larry
