Prevent users from editing text in ComboBox-DOT NET
How we can prevent users of the application from editing a text in ComboBox controls in the .NET 4.0?
Expert
ComboBox class has DropDownStyle property that is used to describe display style of an item in a ComboBox control. DropDownStyle property allows the value from a ComboBoxStyle enumeration that contains three members to describe styles for items like: DropDownList, Simple and DropDown. DropDownList value of a ComboBoxStyle enumeration is selected to set ComboBox control as non-editable by the users, as described in the following code:
Code for C#:
ComboBox1.DropDownStyle = ComboBoxStyle.DropDownList;
Code for VB:
ComboBox1.DropDownStyle = ComboBoxStyle.DropDownList
Specify the process of execution for the managed code.
What are the rules and regulations which should be followed while creating the well-formed XML document?
Describe in brief regarding the Visual basic.NET?
Explain concept of the Destructor?
List the various techniques to authenticate the user in ASP.NET?
Write about the Satellite Assembly?
Illustrate the difference between the XML ‘Fragment’ and an XML ‘Document’.
Explain the use of a Connection object?
Explain the function of WebpartListUserControlPath property of the DeclarativeCatalogPart control?
Write the difference between System.StringBuilder and System.String classes?
18,76,764
1953530 Asked
3,689
Active Tutors
1443142
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!