How to Convert to Upper Case
Posted on January 4, 2009
1 2 3 4 5 6 | 'String Manipulation - How to Convert to Upper Case Private Declare Function CharUpper Lib "user32" Alias "CharUpperA" (ByVal lpsz As String) As String Sub Main() Debug.Print CharUpper("Er") End Sub |