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
State various implementations of the LINQ?
Specify different ways of deployment which are supported by .NET Framework 4.0.
State various controls of ASP.NET AJAX?
Explain the use of Role-based security?
Briefly describe the tuples?
Illustrate Application State in the ASP.NET.
State how the changes made to the DataSet object are identified since it was last loaded?
What do you understand by the term ASP.NET Web Forms?
What are the chief built in objects in Asp.net?
Name the methods of DataView class?
18,76,764
1923233 Asked
3,689
Active Tutors
1459790
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!