Ok i have this code. I need it to add a
' Exterior finish charge
Select Case AccessoriesRadioButtonList.SelectedItem.Text
Case "Standard Finish"
AccessoriesFinishPriceDecimal += STANDARD_DECIMAL
Case "Pearlized Finish"
AccessoriesFinishPriceDecimal += PEARLIZED_DECIMAL
Case "Customized Finish"
AccessoriesFinishPriceDecimal += CUSTOMIZED_DETAILING_DECIMAL
End Select

I need it to add one of these values depending on the button selected.
Const STANDARD_DECIMAL As Decimal = 0
Const PEARLIZED_DECIMAL As Decimal = 345.72D
Const CUSTOMIZED_DETAILING_DECIMAL As Decimal = 599.99D

This is for homework but no where in the book does it tell you or show an example of how to get a value. Well not only that but it never mentions in the book anything about radiobutton list control just that you should use it in the project. I am going to assume it has something to do with the .Text at the end of Select Case AccessoriesRadioButtonList.SelectedItem.Text but I have tried all the options available still unable to get it to work.