728x90








Sleep API는 프로그램자체를 일정시간 정지시키는 API이다.

Private Declare Sub Sleep Lib "kernel32.dll" (ByVal dwMilliseconds As Long)


Private Sub Timer1_Timer()
Sleep 1000
MsgBox "첫번째로나오고 3초 정지후 두번째 메세지"
Sleep 1000
MsgBox "두번째로나오고"
End Sub ' Ctrl + Pause Break 로 빠져나오시길..^^*

예제파일없음

+ Recent posts