RadioButtonList Properties

  • Thread starter Thread starter Wayne Wengert
  • Start date Start date
W

Wayne Wengert

In several books I see "SelectedValue" as a property but when I use it, I
get a compile error that it is not a valid property. From a google search I
found an example that used the following format and that works (but is not
listed in any of the references)? Evaluators is the groupname of the radio
button list:

Evaluators.SelectedItem.Value

Where can I find the "correct" description of properties for the
radiobuttonlist

TIA

Wayne
 
Wayne said:
Where can I find the "correct" description of properties for the
radiobuttonlist

Either in the documentation that came with .NET or at msdn.microsoft.com
(a search for 'RadioButtonList members' will give you what you need).

BTW. SelectedValue IS a valid member of the RadioButtonList, but only in
version 1.1 of the framework (this is specified on the msdn website).
 
Thanks - I missed that change!

Wayne

Philip Q said:
Either in the documentation that came with .NET or at msdn.microsoft.com
(a search for 'RadioButtonList members' will give you what you need).

BTW. SelectedValue IS a valid member of the RadioButtonList, but only in
version 1.1 of the framework (this is specified on the msdn website).
 
Back
Top