Converting to UpperCase

  • Thread starter Thread starter Brian Conway
  • Start date Start date
B

Brian Conway

How do I convert a field that is filled in to uppercase within the C3 code?
I see the ToUpper in there, but how do I get the text box to convert this to
upper when you change focus or move to another text box?
 
Brian,

In this case, you would have to attach an event handler for when the
textbox loses focus, and then set the text to the upper case version of the
current text.

Hope this helps.
 
Do you have an example of this I am just learning C#.


Nicholas Paldino said:
Brian,

In this case, you would have to attach an event handler for when the
textbox loses focus, and then set the text to the upper case version of the
current text.

Hope this helps.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Brian Conway said:
How do I convert a field that is filled in to uppercase within the C3 code?
I see the ToUpper in there, but how do I get the text box to convert
this
to
upper when you change focus or move to another text box?
 
I have read some on using CharacterCasing and have added in the namespace of

System.Windows.Forms

But I still cannot get CharacterCasing to show as an option.
 
Back
Top