VBA - UCase
La funzione UCase restituisce la stringa dopo aver convertito la stringa inserita in lettere maiuscole.
Sintassi
UCase(String)
Esempio
Aggiungi un pulsante e inserisci la seguente funzione all'interno dello stesso.
Private Sub Constant_demo_Click()
var = "Microsoft VBScript"
msgbox("Line 1 : " & UCase(var))
var = "MS VBSCRIPT"
msgbox("Line 2 : " & UCase(var))
var = "microsoft"
msgbox("Line 3 : " & UCase(var))
End Sub
Dopo aver eseguito lo script precedente, produce il seguente output.
Line 1 : MICROSOFT VBSCRIPT
Line 2 : MS VBSCRIPT
Line 3 : MICROSOFT