: How will i convert a word a particular word to lowercase? For example i have a list of words in a database. if the user enters a paragraph all of the words on the list will me converted to lowercase? hows that?
:
:
Dim xStr as String
xStr = "HeLlO"
xStr = LCase(xStr)
MsgBox xStr
xStr = UCase(xStr)
MsgBox xStr