Doesn't appear that a radio button has a value property other than true/false so I was hoping someone could help me out with this one.
I'm writing a method applied to the "CheckedChanged" event. The method is applied to all of the radio buttons, so it always triggers regardless of what button is checked.
The issue is, each button applies a specific filter to the data displayed on the form and I am having problems determining which filter to apply because determining which radiobutton (of the 3) is actually in the checked state.
I know I could always use the name of the checkbox or the text associated with it, but those are rather arbitrary values in the whole scheme of things (in other words, the control names or text values could change before the project is complete and the change might be missed in the code) so I was hoping I could apply a static (or close to static) value to each radio button besides using the name, text or tag property. Any suggestions?