ComboBox controls in .NET 4.0
How users of an application can be prevented from editing the text in the ComboBox controls in .NET 4.0?
Expert
ComboBox class comprises of DropDownStyle property, that is used to describe the display style of items in the ComboBox control. The DropDownStyle property takes a value from the ComboBoxStyle enumeration that contains three members in order to define the styles for the items:
a)Simple,
b)DropDownList, and
c)DropDown. DropDownList value of the ComboBoxStyle enumeration is selected in order to set a ComboBox control as non-editable by the users, which is shown below:
Code for VB: ComboBox1.DropDownStyle = ComboBoxStyle.DropDownList
Code for C#: ComboBox1.DropDownStyle = ComboBoxStyle.DropDownList;
State some of the different ways in order to pass parameters to the server?
Write a major difference between a RadioButton control and a CheckBox control?
List the basic characteristics of the Cloud computing?
Illustrate the various types of contract available in the WCF?
Define Web server controls as well as HTML?
What is the use of Global.asax file?
Differentiate between SQL invalidation and SQL notification?
Describe code access security (CAS)?
Which statement can be used to replace many if-else statements in the code.
In what way we can unselect a selected item in the ListView control programmatically in the .NET 4.0?
18,76,764
1948995 Asked
3,689
Active Tutors
1423321
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!