Gary,
A radio button's value is recorded in the radio button list. To check
if it is selected or not, you need to look at the list value.
You may also want to revert back to the previous state if the user
changes their mind and selects another button. I would recommend an
If statement on the change event of the radiobuttonlist that looks
something like this:
if (radiobuttonlist.rawValue ==1) {
Expenses.Expenses.Row1.Miles1.access = "readOnly";
}
if (radiobuttonlist.rawValue ==2) {
Expenses.Expenses.Row1.Miles1.access = "";
}
Angie
--
Angie Okamoto