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;
List some differences between the CheckBox control and a RadioButton control?
How can you send an email message through an ASP.NET Web page?
Describe about the characteristic of Anonymous type?
How we can populate the dataset before querying the DataSet object by using LINQ to DataSet?
Is it possible to create a Windows Service by using WPF?
Define the term “Array”.
14. What is difference between Tool Strip drop down button and toolstripsplit button?
Briefly explain ADO.NET and its features?
What is the role of the DynamicPopulateExtender control?
Illustrate Queues and Stacks?
18,76,764
1927296 Asked
3,689
Active Tutors
1413742
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!