Display characters in uppercase in textbox
How one can implement the text box to display characters in the uppercase?
Expert
TextBox class has a CharacterCasing property that is used to identify case of content for the text box. This property allows the value from a CharacterCasing enumeration of the .NET Framework. Members specified in a CharacterCasing enumeration are Normal, Lower and Upper. We can choose any one of the enumerations as the value for a CharacterCasing property of the particular text box, like:
textBox1.CharacterCasing = CharacterCasing.Upper;
Briefly describe contra-variance and covariance in .NET Framework 4.0 and give an example for both?
How the cursor can be programmatically positioned on a given line or on a character in the RichTextBox control in C#?
List the classes which are introduced in the System.Numerics namespace?
What is Code Access Security (CAS)?
Explain what is C#?
Is it possible to create a Windows Service by using WPF?
Which type of code, a client-side or a server-side, is found in the code-behind file of the Web page?
Describe ExpandoObject and DynamicObject classes.
Describe about the characteristic of Anonymous type?
List out the attributes of an Interface.
18,76,764
1931288 Asked
3,689
Active Tutors
1450137
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!