Reputation: 33
There are four standard radio buttons on a form. How do you make the first pair work independently of the second pair
is linking them to event is the best way to do ??
Upvotes: 0
Views: 231
Reputation: 598164
Radio buttons are grouped when they have a common Parent
. So put the two pairs in separate Parent
containers. You can use TRadioGroup
, TGroupBox
, TPanel
, etc for that.
Upvotes: 9