lowercase 2 uppercase

kavka

Member
Licensed User
Hey!

Is it possible to: write a code that will turn fonts from lowercase to uppercase.

Any ideas?

Thx, Kavka
 

LineCutter

Active Member
Licensed User
Longtime User
StrToUpper seems to be the function you want:

Returns a new string from the old string that its letters are uppercase.
Syntax: StrToUpper (string)
Example: Msgbox (StrToUpper("AbCdE"))
Result: Displays "ABCDE"
 
Top