文件名称:一段程序延迟程序,名字要长
文件大小:335B
文件格式:TXT
更新时间:2013-06-14 02:57:31
程序延迟
感觉使用效果比时间控件爽些哈!!! Private Declare Function timeGetTime Lib "winmm.dll" () As Long Function Delay(Dtime As Integer) As Long Savetime = timeGetTime While timeGetTime < Savetime + Dtime DoEvents Wend End Function