The KeyPress event of your textbox will be fired for each keystroke, giving you a chance to examine and modify each character.
For example lowercase "a" has an ascii code of 96, uppercase "A" is 64. You could simply subtract 32 from 96 and you're done.
The keyvalue is passed to the KeyPress event as an integer.
Dimandja