Ludovic Th�bault wrote/ schreef:

> Is there any command to change the case of a text (without use chartonum
> and numtochar) ?
> 
> like :
> 
> changecase of fld id 1 to majuscule.
> 
> or set the textcase of fld id 1 to majuscule
use:
  put toUpper(field 1) into field 1

or
  put toLower(field 1) into field 1

(toUpper("Test") --> "TEST")
(toLower("Test") --> "test")

Hope this helps,

Regards, / Groeten,
Sjoerd

Reply via email to