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;
Illustrate the term Marshalling?
Explain the importance of the Strong Name tool?
State different ways through which a method can be overloaded?
Is it possible to set which kind of comparison we want to perform by the CompareValidator control?
List out the different components of an assembly.
Write the different types of literals used in C #?
Write the difference between Arrays and Collection?
Briefly describe about the XML elements.
Explain the services which UDDI offers to the Web applications.
Why the UpdateProgress control is used in the AJAX?
18,76,764
1931754 Asked
3,689
Active Tutors
1427459
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!