以文本方式查看主题

-  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=10534)

--  作者:xiaoqiwei
--  发布时间:2011/6/10 18:12:00
--  请帮帮看看RadioButton 应该怎么定义

请帮帮看看RadioButton 应该怎么定义,代码如下:

 

If e.Form.Controls("收银台").RadioButton = True Then
Forms("主界面").Open()
e.Form.Close()
end if

 

运行就提示找不到“类型RadioButton的公共成员”


--  作者:ybil
--  发布时间:2011/6/10 18:20:00
--  

Dim rdo As WinForm.RadioButton
rdo = Forms(
"窗口1").Controls("RadioButton1")
rdo.Checked =
True


--  作者:xiaoqiwei
--  发布时间:2011/6/10 18:29:00
--  
OK,Thank you