VB中如何使用延时函数?
声明:
Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)
调用:
'延时1秒
Call Sleep(1000)