Hi All,

I am a little bit stuck on this and not sure how to handle it... I have a form with approx 20 radiobuttons, once I click any radiobutton, that will trigger creating a dynamic button on another form. Where I am stuck is, how do I keep a single radiobutton disabled if lets say any of the other 19 buttons have been clicked? For example:

RadioButton List Form1 -

Code:
RadioButton1 = APPLE
RadioButton2 = ORANGE
RadioButton3 = GRAPES
RadioButton4 = PEARS
RadioButton5 = EMPTY ORDER
Form2 Textbox -

Code:
TextBox1 = "Order Number"
Ok, so Form1 opens with selections, they choose APPLE, the button appears on Form2. Until TextBox1 changes on Form2, RadioButton5 (EMPTY ORDER) needs to remain disabled each time Form1 opens UNLESS RadioButton5 was the first and only selection. Meaning if I select Empty Order, I cannot select anything else until Order Number changes. If I select any Fruit, I cannot select Empty Order. Hopefully this comes across making sense.