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;
What we can do to allot page specific attributes in the ASP.NET application?
Illustrate what do you mean by Asp.net Web form?
Is it possible to post and access view state in the other application?
Write the name of event handlers which can be included in a Global.asax file?
Briefly explain about PLINQ?
State various controls of ASP.NET AJAX?
What do you understand by Common Type System (CTS)?
What setting should be added in a configuration file to reject the particular user from accessing secured resources?
Can I employ Windows Forms in the WPF application? Give reasons.
Write about the SOAP encoding?
18,76,764
1942880 Asked
3,689
Active Tutors
1413107
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!