Converts all upper-case letters in a string to lower-case.
See also: UCase Function
LCase (Text As String)
String
Text: Any string expression that you want to convert.
5 Invalid procedure call
Sub ExampleLUCase
Dim sVar As String
sVar = "Las Vegas"
Print LCase(sVar) ' "las vegas"
Print UCase(sVar) ' "LAS VEGAS"
End Sub