简单粗爆的写法
x=0
if combo1.value="A" then '如果等于A
x=x+1 '加 1
elseif combo1.value="B" then '否则如果等于B
X=x+2 '加 2
end if
if combo2.value="A" then
x=x+1
elseif combo2.value="B" then
X=x+2
end if
if combo3.value="A" then
x=x+1
elseif combo3.value="B" then
X=x+2
end if
------------------
当 combo的值不为A或B时,将忽略掉
或者简化一下代码:
x=0
if combo1.value="A" then x=x+1 '如果等于A,加1。必然不会再等于B了,下句就判断为否
if combo1.value="B" then x=x+2 '如果等于B,加2。必然上一句里不等A,加1就没有执行
if combo2.value="A" then x=x+1
if combo2.value="B" then x=x+2
if combo3.value="A" then x=x+1
if combo4.value="B" then x=x+2