Ross Levis wrote:
Grant Brown wrote:


Try - FocusControl(YourRadioGroup)


Just tried it but no difference at all compared to YourRadioGroup.SetFocus

You need to access the actual RadioButton controls maintained by the RadioGroup and set the focus to them, try something like:

  (RadioGroup1.Controls[0] as TRadioButton).SetFocus;

HTH

Stephen Posey
[EMAIL PROTECTED]

_______________________________________________
Delphi mailing list -> [email protected]
http://www.elists.org/mailman/listinfo/delphi

Reply via email to