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); }
Write down the main core services of WWF runtime in brief.
List out the different components of an assembly.
Which method is used in .NET to enforce garbage collection?
Illustrate Windows Workflow Foundation (WF).
By which method we can add or remove rows from a DataTable object of DataSet?
State the difference between a ContextMenuStrip control and a MenuStrip control?
Briefly explain Application Cache?
State the use of the Panel control? Does it is displayed at the runtime.
By which method we can sign out from the forms authentication?
Illustrate the various types of contract available in the WCF?
18,76,764
1941926 Asked
3,689
Active Tutors
1442559
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!