how do I check to see if an item in the RadioGroup is checked?
in the examples I have read they all say like this
if radio1.Checked then
with the group not a single radio button but the TRadioGroup
these do not work.
RadioGroup.checked
RadioGroup.Items.Checked
RedioGroup.ItemsIndex.Checked
RadioGroup.Items[RadioGroup.ItemsIndex].checked
reguardles if it is caps or not, Checked, or checked I get an error
mhsetroot.pas(433,36) Error: identifier idents no member "Checked"
so How do I check to see if a selection is checked or selected within a TRadioGroup?