CheckedListBox control
How all items in the CheckedListBox control in .NET 4.0 can be checked/unchecked?
Expert
Following code can be used to check all the items in .NET:
Code for VB:
Dim i as Integer
For i = 0 To myCheckedListBox.Items.Count - 1
myCheckedListBox.SetItemChecked(i, True)
Next
Code for C#: for( int i = 0; i < myCheckedListBox.Items.Count; i++ ) { myCheckedListBox.SetItemChecked(i, true); }
What is the role of the DynamicPopulateExtender control?
What do you mean by the term XML Infoset?
Explain the working of Cookies. And also give the example of the Cookie abuse?
State the values that can be allocated to the DialogResult property of the Button control?
State the use of the Select clause and SelectMany() method in LINQ?
By how many ways you can instantiate a tuple?
Write the use of MaxDate and MinDate properties of a MonthCalender control?
Explain the difference between the global theme and the page theme?
List all templates of a Repeater control?
Specify various types of assemblies and explain them.
18,76,764
1930759 Asked
3,689
Active Tutors
1425259
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!