http://www.vb-helper.com/HowTo/ucasetxt.zip

	Purpose
Make a TextBox convert text into UPPER CASE

	Method
Use GetWindowLong to read the TextBox's GWL_STYLE. Add on the ES_UPPERCASE
extended style using SetWindowLong.

Note that this method automatically makes all text upper case without
additional code in the event handlers. It also converts text pasted into
the control using ^V or the context menu.

Thanks to Alexander Willemse (alexw@iaehv.nl).

	Disclaimer
This example program is provided "as is" with no warranty of any kind. It is
intended for demonstration purposes only. In particular, it does no error
handling. You can use the example in any form, but please mention
www.vb-helper.com.
