Small company logo:
   History
 
Advertising banner:
 
 UCase
Home • Help • Customization Tools • FCAS • Language Reference • UCase
 
Purpose
Returns the string argument converted to all uppercase letters.
Syntax
UCase (StringExpression)
Example
Sub Main()
        Dim s As String
        s = UCase(hELlo wOrld")
                Print s 'displays "HELLO WORLD"
                Print UCase ("this is now uppercase")
'displays "THIS IS NOW UPPERCASE"
End Sub