Auto Cap'ing First Letter of Each Word in TextBox

  • Thread starter Thread starter Bruce Vander Werf
  • Start date Start date
B

Bruce Vander Werf

I would like to automatically capitalize the first letter of each word
as the user is 'typing' into a TextBox control. Can anyone point me in
the direction of how I would do this? Sample code would be nice.

--Bruce
 
overide OnKeyPress() ?
you set the event to handled = true, and add the string value yourself.
 
Back
Top