老师,在CheckedChanged事件
RadioButton选中时TextBox5设置为可编辑,否则为不可编辑,以下代码错在哪里?
If e.Sender.Checked = True Then e.Form.Controls("TextBox5").text = BooleanEnum.FalseElse e.Form.Controls("TextBox5").text = BooleanEnum.TrueEnd If