Some examples of string concatenation in ObjectVision:

To output the time as an ascii number from OV:
                +@hour(@now)&":"&@minute(@now)&":"&@second(@now)

To output the date as an ascii number from OV:
                @month(field)&"/"&@day(field)&"/"&@right(@year(field),2)
    where @now will get the system time and (field) can be any
    date field or you can substitute the system date (@int(@now))

This can be helpful on a tree where OV is reading your fields and not
formatting the data the way you need to display it.
