Need Help To Make First Letter Of All Words In A Textbox To Uppercase
so, i have this code to convert first letter of word to uppercase:
Private Sub txtFields_Change(Index As Integer)
txtFields(Index).Text = UCase$(Left(txtFields(Index).Text, 1)) & LCase$(Mid$(txtFields(Index).Text, 2))
txtFields(Index).SelStart = Len(txtFields(Index).Text)
End Sub
but, this was before i realize that i'm actually working with textboxes where more than two words are entered, i need some help with this code so that first letter of all words in a textbox will become uppercase...I'm using Multiline Option in textbox.
anyone, pls? tnx.