UCase Function

Converts lowercase characters in a string to uppercase.

See also: LCase Function

Syntax:

UCase (Text As String)

Return value:

Strings

Parameter

Text: Any string expression that you want to modify.

Error codes:

5 Invalid procedure call

Example:

Sub ExampleLUCase

Dim sVar As String

    sVar = "Las Vegas"

    Print LCase(sVar) REM returns "las vegas"

    Print UCase(sVar) REM returns "LAS VEGAS"

End Sub