tags:

views:

35

answers:

1

I have many textbox inside a group box so when radio button is clicked i want to make these controls readonly. Is it possible,and again on another radio button click again i want to make readonly false in vb.net.

A: 

In the onclick event for your radio button add code that sets your groupbox.IsEnabled to false. That should make the control readonly.

kniemczak