今天图老师小编要向大家分享个快速找到选中的OptionButton教程,过程简单易学,相信聪明的你一定能轻松get!
【 tulaoshi.com - 编程语言 】
OptionButton控件经常是作为控件数组存在的,要快速找到其中的哪一个被选中,可以使用下面的代码:
'假设控件数组包含3个OptionButton控件
intSelected=Option(0).Value*0-Option(1).Value*1-Option(2).Value*2
(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/bianchengyuyan/)注意,因为第一个操作数总是0,所以上述代码可以精简如下:
intSelected=-Option(1).Value-Option(2).Value*2
(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/bianchengyuyan/)->来源:http://www.tulaoshi.com/n/20160219/1621006.html
看过《快速找到选中的OptionButton》的人还看了以下文章 更多>>