Convert String To Uppercase

Form Code

'replace "abcdefg" with the string you want to uppercase
Private Sub Form_Load()
    Dim oldString As String
   
oldString = "abcdefg"
    MsgBox (UCase(oldString))
End Sub

Go Back