Is it possible to uppercase the first character of each word using regex?
I\'m going to be using this in VB.net (SSIS)
Do this on key press event of your text box.
If e.KeyChar <> ChrW(Keys.Back) Then If txtEname.Text = "" Then e.KeyChar = UCase(e.KeyChar) End If End If