主题:case 分句是不是不可以重复定义变量?
比如
case 1
dim a
.......
case 2
dim a
.......
case 3
dim a
.......
过程呢?
case 1
sub a()
.........
end sub
case 2
sub a()
.........
end sub
case 3
sub a()
.........
end sub
case子句太长,错误真难找。似乎变量不行,过程可以?
case 1
dim a
.......
case 2
dim a
.......
case 3
dim a
.......
过程呢?
case 1
sub a()
.........
end sub
case 2
sub a()
.........
end sub
case 3
sub a()
.........
end sub
case子句太长,错误真难找。似乎变量不行,过程可以?