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); }
Explain about LinqDataSource control?
Write the name of namespaces which are required to allow the use of the databases in the ASP.NET pages?
List the types of data types that are present in .NET?
What do you mean by the term WPF?
Define the roles of CLR in .NET Framework and also explain the responsibilities?
Is it possible to write a class without specifying the namespace? Write the namespace to which it belongs by default?
Explain about the DataAdapter class in ADO.NET.
What do you mean by the term XML Infoset?
Define the function of a ViewState property?
Describe the term Cloud?
18,76,764
1960955 Asked
3,689
Active Tutors
1414066
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!