Skip to main content

Radio Button Saved Selections

Comments

1 comment

  • John Nerge

    You might be able to do that using the form.Find(Of RadioButtonFormItem)("RadioButton1").Checked setting for each radio button. You'd have to test for each button using If statements within your runtime modifications.

    • Test if the radio button was previously checked
      1. If yes, then set form.Find(Of RadioButtonFormItem)("RadioButton1").Checked to True
      2. If no, then do nothing
    0

Please sign in to leave a comment.