Prevent users from editing text in ComboBox-DOT NET
How we can prevent users of the application from editing a text in ComboBox controls in the .NET 4.0?
Expert
ComboBox class has DropDownStyle property that is used to describe display style of an item in a ComboBox control. DropDownStyle property allows the value from a ComboBoxStyle enumeration that contains three members to describe styles for items like: DropDownList, Simple and DropDown. DropDownList value of a ComboBoxStyle enumeration is selected to set ComboBox control as non-editable by the users, as described in the following code:
Code for C#:
ComboBox1.DropDownStyle = ComboBoxStyle.DropDownList;
Code for VB:
ComboBox1.DropDownStyle = ComboBoxStyle.DropDownList
What do you mean by the Extender controls?
Explain the role of a DISTINCT clause in the LINQ query?
Write about the AJAX and JavaScript?
Illustrate the term LinqDataSource control?
In what way we can display the icon during runtime on a StatusStrip control?
Explain MaskedTextBox control and what does the Mask property do?
Write difference between an Abstract class and an Interface.
What is the concept of CAS?
List the services which are offered by the Window Azure operating system?
Write about the architecture of ADO.NET in brief.
18,76,764
1955291 Asked
3,689
Active Tutors
1414201
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!