Link to home
Start Free TrialLog in
Avatar of droos
droosFlag for Belgium

asked on

Read/Write TRzCheckList (Raize) in c++Builder

In my application I included a CheckListbox.
How can I :
1. determine which checkboxes have been checked
2. change the checkstate at runtime
3. check which item is selected
Avatar of AVaulin
AVaulin
Flag of Ukraine image

1. Use CheckListbox::GetCheck method
2. Use CheckListbox::SetCheck method
3. Write cycle
for( int i=0; i<YourCheckListBox.GetCount(); i++ )
{
// use CheckListbox::GetCheck method
}

Good luck.
Avatar of droos

ASKER

It doesn't deem to work. I get the message 'GetCheck' is not a member of 'Rzchklst::TRzCheckList'

Couldn't you provide me with a small example ?
Avatar of droos

ASKER

Adjusted points to 150
ASKER CERTIFIED SOLUTION
Avatar of gaohong
gaohong

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial