VB怎样识别已选中的复选框
发布网友
发布时间:2022-05-12 15:17
我来回答
共2个回答
热心网友
时间:2023-10-11 13:58
dim i as Integer
dim count as integer
for i = 1 to 24
if check1(i).Value=1 then
'到这里,i就代表了是第几个复选框是被选中的,而check1(i)就是已经被选中的复选框
count = count + check1(i).helpContextID
endif
next
msgbox count
热心网友
时间:2023-10-11 13:58
Value就是选定复选框是否被选定的值,楼上代码都贴了,我就不多说了。。