0
First letter upper case
Hello, how can I have all the first letters in upper case.
For example, if I write "hello Everybody, HOW are you"
I would like to have "Hello Everybody, How Are You".
Thanks in advance for your help.
6 replies
-
User this function:
–––
let myT := 'Text field';
'Text field' := capitalize(myT)
–––Birger
-
... to get all caps use this:
–––
let myT := 'Text field';
'Text field' := upper(myT)
–––Birger
-
Yes, it work's!
Thanks for your quick help :-)
-
Needed this copied it ..works Thank u
-
Just the solution I was searching for.....Thank you!
-
Thanks , i just use this
Content aside
- 4 yrs agoLast active
- 6Replies
- 2781Views