Module1.bas
资源名称:1.rar [点击查看]
上传用户:wzjlab
上传日期:2022-05-28
资源大小:286k
文件大小:0k
源码类别:

手机短信编程

开发平台:

Visual Basic

  1. Attribute VB_Name = "Module1"
  2. Option Explicit
  3. Public Declare Function GetTickCount Lib "kernel32" () As Long
  4. Declare Function timeGetTime Lib "winmm.dll" () As Long '得到开机以来的毫秒数
  5. Public Sub delay(time As Integer) '延时函数
  6. Dim Savetime As Double
  7. Savetime = timeGetTime '记下开始时的时间
  8. While timeGetTime < Savetime + time '循环等待
  9. DoEvents '转让控制权,以便让操作系统处理其它的事件。
  10. Wend
  11. End Sub