UCase (function)

<< Click to Display Table of Contents >>

UCase (function)

UCase(String)

Converts a string to uppercase.

See also: LCase

Example:

Sub Main

 MsgBox UCase("Think BIG!")   ' gives "THINK BIG!"

End Sub