以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  [求助]RadioButton设置问题  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=137249)

--  作者:gcf0937
--  发布时间:2019/7/1 17:20:00
--  [求助]RadioButton设置问题

老师,在CheckedChanged事件

RadioButton选中时TextBox5设置为可编辑,否则为不可编辑,以下代码错在哪里?

 

If e.Sender.Checked = True Then
    e.Form.Controls("TextBox5").text = BooleanEnum.False
Else
    e.Form.Controls("TextBox5").text = BooleanEnum.True
End If

 


--  作者:有点甜
--  发布时间:2019/7/1 17:22:00
--  

 

If e.Sender.Checked = True Then
    e.Form.Controls("TextBox5").Enabled = BooleanEnum.False
Else
    e.Form.Controls("TextBox5").Enabled = BooleanEnum.True
End If