Hi,
CheckedListbox control inherits from ListBox. So it will get the parent properties. I test on my side. You can write the setting datasource code and this can be compiled even though the datasource property is not show in intelisense list.
checkedListBox1.DataSource = dt01;
checkedListBox1.DisplayMember = "col01";
checkedListBox1.ValueMember = "col02";
By the way, you can expend the base CheckedListBox control with the datasource property.
The following tells about that. Hope this helps.
http://www.codeproject.com/KB/combobox/ExCheckedListBox.aspx
Best regards,
Ling Wang
Please remember to click “Mark as Answer�on the post that helps you, and to click “Unmark as Answer�if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.