Foxtable(狐表)用户栏目专家坐堂 → [求助]多个RadioButton按钮,如何赋值?


  共有3295人关注过本帖树形打印复制链接

主题:[求助]多个RadioButton按钮,如何赋值?

帅哥哟,离线,有人找我吗?
大红袍
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:贵宾 帖子:39310 积分:196782 威望:0 精华:1 注册:2015/4/25 9:23:00
  发帖心情 Post By:2015/11/5 15:42:00 [显示全部帖子]

Click是事件

 

Tables("表A").Current("第一列") = e.Sender.Text


 回到顶部
帅哥哟,离线,有人找我吗?
大红袍
  2楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:贵宾 帖子:39310 积分:196782 威望:0 精华:1 注册:2015/4/25 9:23:00
  发帖心情 Post By:2015/11/5 15:44:00 [显示全部帖子]

如果是按钮事件写,这样写

 

Dim str as String = ""

If e.Form.Controls("RadioButton1").Checked Then

    str = e.Form.Controls("RadioButton1").Text

Else If e.Form.Controls("RadioButton2").Checked Then

    str = e.Form.Controls("RadioButton2").Text

Else If e.Form.Controls("RadioButton3").Checked Then

    str = e.Form.Controls("RadioButton3").Text

End If

 

msgbox(str)


 回到顶部
帅哥哟,离线,有人找我吗?
大红袍
  3楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:贵宾 帖子:39310 积分:196782 威望:0 精华:1 注册:2015/4/25 9:23:00
  发帖心情 Post By:2015/11/5 16:11:00 [显示全部帖子]

Dim str as String = ""

If e.Form.Controls("RadioButton1").Checked Then

    str = e.Form.Controls("RadioButton1").Text

Else If e.Form.Controls("RadioButton2").Checked Then

    str = e.Form.Controls("RadioButton2").Text

Else If e.Form.Controls("RadioButton3").Checked Then

    str = e.Form.Controls("RadioButton3").Text

End If

 

r("第一列") = str


 回到顶部