Advertising banner:

History
 
 UCase
Home • Help • A0 • Customization Tools • FCAS • Language Reference • UCase
 
UCase (strings)
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