This topic has been archived. It cannot be replied.
-
工作学习 / IT技术讨论 / 在VB 中 能否不用容器把OptionButton 进行分组?
-bobo123(bobo);
2004-11-1
(#1959710@0)
-
好像不行吧。
-littlebears(gagaga);
2004-11-1
(#1959939@0)
-
知道不行,有没有什么解决的办法。
-bobo123(bobo);
2004-11-1
(#1960024@0)
-
用Frame做容器,再把Frame的BorderStyle设为None,不就看不出容器了嘛。你那个是什么情况,非要实现不用容器来分组?
-littlebears(gagaga);
2004-11-1
(#1960104@0)
-
我的现在手头这个项目有点象IE 缆器,在窗体里要显示有很多的单项选择和多项选择题目。因为用VB 写所以还涉及到一个问题是如何捕获到动态生成的数组控件事件,这个在网络上至今还没看到有好的解决方案。
-bobo123(bobo);
2004-11-1
(#1960186@0)
-
who told you 不行?never heard about control Array ? Give all the option buttons you want them to be in a group the same name, VB will ask if you want create a control Array, say yes. After that, each option button will have an index. you can access each of the option buttons like OptionButtonArrayName.Item(index)
-guestagain(guest again);
2004-11-3
{296}
(#1962736@0)
-
那你这个情况是在设计的时候,就固定了控件的数目.我希望是在程序运行的时候,根据当前数据的信息,动态的生成控件,数量不定,并希望在程序里能够捕获到这些动态控件的事件,好象VB 里是不行的.
-bobo123(bobo);
2004-11-3
(#1963502@0)
-
可以的。不过是你没有遇到过,没有经验罢了。
-guestagain(guest again);
2004-11-3
(#1963610@0)
-
能不能说一说怎么做?
-bobo123(bobo);
2004-11-4
(#1964045@0)
-
are you a programmer? nothing is impossible. Using some code to do this
-nohairmonk(无毛和尚);
2004-11-1
(#1960039@0)
-
用程序是可以实现,但比较麻烦,不是按正规的办法来做,实现起来比较别扭,最好有个OptionGroupbutton 控件类
-bobo123(bobo);
2004-11-1
(#1960173@0)