Vbs中If语句和Do...loop语句的用法
麻烦下各位大哥大姐们,解释下Vbs中if语句和Do...loop语句的用法。最好多用例子。我是菜鸟!...
麻烦下各位大哥大姐们,解释下Vbs中if语句和Do...loop语句的用法。最好多用例子。我是菜鸟!
展开
2013-11-29
展开全部
if true then ....else ....
------------------------------
if not true then ....else....
---------------------------------
if true then
....
elseif true then
....
elseif not then
....
else
....
end if
-------------------------------------
--------------------------------------
do
if true then exit do
loop
---------------------------------------
do while true
....
loop
---------------------------------------
do
....
loop while true
------------------------------
if not true then ....else....
---------------------------------
if true then
....
elseif true then
....
elseif not then
....
else
....
end if
-------------------------------------
--------------------------------------
do
if true then exit do
loop
---------------------------------------
do while true
....
loop
---------------------------------------
do
....
loop while true
2013-11-29
展开全部
a=1
If a=1 Then
MsgBox "a=1"
Else
MsgBox "a<>1"
End If
Do
If a<10 Then
a=a+1
Else
Exit Do
End If
MsgBox a
Loop
If a=1 Then
MsgBox "a=1"
Else
MsgBox "a<>1"
End If
Do
If a<10 Then
a=a+1
Else
Exit Do
End If
MsgBox a
Loop
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询