I have a program where sometimes a RadioGroup ItemIndex is set to a huge
number. I'm not changing it. Anyone know why it changes?
Thanx
Hank
1. Get ItemIndex for RadioGroup from cursor position? - Delphi/Pascal
2. How can i make a radiogroup transparent ?
DELPHI 7 I have a nice image as a background in my form. The standard radiogroup component that comes in Delphi doesn't support transparency. I installed LMD 7 SE (freeware edition of a components package) and use the LMDRadioGroup but still can't manage to show the background image even its properties has a transparency option (true, false). Any help please ? Thank you.
3. Cross between GroupBox & RadioGroup - Delphi third-party tools
4. radiogroup
I have here an borland c++ 5 application where I have an radiogroup on the form with two entries. I want to add one more item but don't know how I can do this. Hope somebody can help me there. Thanks p.s. I don't have very much experience in c++
5. attaching data to radiogroup - Delphi VCL Component
Hello all ... Is there a way to change the look of the individual radiobuttons inside a radiogroup ? something like ownerdraw radiogroup or something ? Thanks all DelphiNCI
7. Odd behaviour of RadioGroup OnClick event - Delphi VCL Component
8. RadioGroup
Hi.. i Have a TRadioGroup wich presents a strange behaviour. The tradioGroup
has 3 items.
procedure Form1.Activate(Sender: TObject);
begin
tRadioGroup1.itemindex:2;
end;
strangelly, allways the item 0 is selected and focused!!!
but if i do:
procedure Form1.Activate(Sender: TObject);
begin
tRadioGroup.SetFocus;
tRadioGroup1.itemindex:2;
end;
then it works fine.....
Any idea why is this??