Checkboxes inside checklistbox
-
Hi All Can anyone suggest how can we find the checkboxes inside checkedlistbox. Iam not speaking about the checked item inside the checkedlistbox instead i need to find each and every checkbox controls included in the checkedlistbox Thanks in advance Santhosh
-
Hi All Can anyone suggest how can we find the checkboxes inside checkedlistbox. Iam not speaking about the checked item inside the checkedlistbox instead i need to find each and every checkbox controls included in the checkedlistbox Thanks in advance Santhosh
I am afraid, you can not access that checkboxes inside the checkedlistbox. But as a last resort we can try using checkedlistbox.Controls property and enumerates the child controls to see if you can get hold of that checkbox. But still I am sure that won't be of much help.
Regards, Anindya Chatterjee[^]
-
I am afraid, you can not access that checkboxes inside the checkedlistbox. But as a last resort we can try using checkedlistbox.Controls property and enumerates the child controls to see if you can get hold of that checkbox. But still I am sure that won't be of much help.
Regards, Anindya Chatterjee[^]
Anindya thanks for the reply
foreach (CheckBox c in chkListboxPermission.Controls) { }
As you said this is not providing me the desired result.. :( Santhosh -
Anindya thanks for the reply
foreach (CheckBox c in chkListboxPermission.Controls) { }
As you said this is not providing me the desired result.. :( Santhosh -
Hi All Can anyone suggest how can we find the checkboxes inside checkedlistbox. Iam not speaking about the checked item inside the checkedlistbox instead i need to find each and every checkbox controls included in the checkedlistbox Thanks in advance Santhosh
Why would you want to?