| |
Issue ID: 00101 |
|   |   |
|
Project: Abakus VCL State: All 07.May.09 16:37 |
Subject: AbColBitBtn as radio button Description: I want to use a few AbColBitButtons as radio buttons on a panel. I set the mode of all buttons to mRadioButton. When I start the application all buttons are checked at the same time. What do I miss? |
07.May.09 21:28 | Comment: Hi Andreas, to group few (up to 32) AbColBitButtons together you have to set - GroupIndex e.g. to 1 for all of the same group - StatusBit to a individual no for each button (0..31) The StatusBit is the bit-adress in a integer property "StatusInt". To Check changes within the group you can use the event "OnStatusIntChanged" of one button.... regards Achim Baecker |
08.May.09 16:53 | Comment: Thanks, works fine now. |