你是不是想在这几个call语句中适当有一定时间间隔呀?
可以写一个
sub
yc(ms)
for
i
=
1
to
ms
label1.caption=i
next
end
sub
在每个call之间加入:
call
yc(10000)
注意问题:
1:参数越大,时间越长
2:窗体中应该加入一个label1
使用上格式稍有区别:
假设自定义过程:
Sub
aaa(Byval
n
as
Integer)
......
End
sub
调用的格式:
1.CaLL
aaa(b)
2.
aaa(b)
3.
aaa
b
而不可以:
CaLL
aaa
b