如果没有选中复选框,
然后messagebox.show(“请选择至少一个复选框”)
我怎样才能在vb上执行此操作?
答案 0 :(得分:0)
如果你有两个复选框,则认为验证必须是....
if ((checkbox1.checked=false) and (checkbox2.checked=false) ) then
msgbox "please select atleast one checkbox"
else
//the code you wanted to do
end If
这会考虑你的想法!