逻辑判断和数学运算
1、逻辑判断:not ,and ,or,xor,eqv,imp......
2、数学运算:^ ,-,*,\,/,mod,+......
3、比较:=,<>,<=,>=,like,is........
赋值语句 Let a=6(值赋值可以省略Let); Set a=object1(对象赋值)
同行多语句 语句1:语句2
条件语句
多行IF语句 if<条件>then
[语句块1]
elseif <条件>then
[语句块2]
...........
else
[语句块n]
endif
单行if语句 if <条件>then<语句>else<语句>
select case 语句