Author: Tomas Rutkauskas How to add items to a TRadioGroup without adding one item at a time Answer: 1 { ... } 2 with RadioGroup1.Items do 3 begin 4 Delimiter := ';'; 5 DelimitedText := 'Apples;Bananas;Oranges'; 6 end; 7 { ... }