Hello,
So, I need to disable the next button until a user selects one of a set of radio buttons. What I've done is to make an if/else sttement that checks to see if any of th erb.checked = true, in the next button handler and then try to set the .enabled button property to true/false. but it seems to never accept the false assignemen t (traced through the code and for sure it's being set).
I'm setting the property like this:
wizard1.NextButton.Enabled = false;
Any thoughts?
The plan is to set it = true on the radip button handlers. The reason I'm checking rb status is because I want to NOT have it disabled if a user uses back, then next, and had already selected something before hitting back.
thanks,
-Vin