I have a simple question. How to get the count of checked item in CheckBoxListBox without using a loop?
3 Answers
5
votes
TCheckListBox does not provide the option that you are looking for. A loop through its Checked[] property is required.
If you were using Delphi, you could create a class helper to hide that loop. But class helpers are not available in C++.
0
votes
0
votes