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;
Name the different types of authentication techniques which are used in the connection strings to connect the .NET applications with the Microsoft SQL Server?
Illustrate different security methods that IIS Provides distant from .NET?
By which method we can post a Web page to another Web page?
Write down some of the benefits of hosting WCF service in the WAS?
Explain briefly the term AutoPostBack?
State the concept of constructor?
Illustrate the benefit of option strict on? Describe in brief.
Explain the characteristics of the value-type variables which are supported in a C# programming language.
Describe managed extensibility framework?
Give the basic syntax of LINQ query in Visual Basic as well as in C#.
18,76,764
1951468 Asked
3,689
Active Tutors
1458229
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!