Try the code below:
Dim sVal$
sVal = "I am trying to enter a line of code that allows me to input the house number in a text box followed by the street name"
sVal = StrConv(sVal, vbUpperCase)
Debug.Print sVal
sVal = StrConv(sVal, vbLowerCase)
Debug.Print sVal...