Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Disabling a single Item in a RadioGroup

Status
Not open for further replies.

amarti44

Programmer
Feb 16, 2001
23
0
0
US
Hi
I have a radio group using TRadioGroup and I want to
disable a single Item in the radio group without
disabling the entire radio group.
... Any Suggestion??

Thanks in Advance

Alberto
 
Disabling is a little difficult, you could use:

RadioGroup1.Items.Delete(3); wich deletes the 4th element.

Check also out the procedures Add, Clear, Append, AddStrings etc.. S. van Els
SAvanEls@cq-link.sr
 
You may need to use a GroupBox with individual RadioButtons in it. This is probably the only way you will get the functionality you need.

Tim Dover
SNL Computing
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top