Pause your Application

27/05/2012, 01:24

accessman

uyumak isteyenler için
Kod:
Private Declare Sub Sleep Lib "kernel32"  (ByVal dwMilliseconds As Long)
Kod:
Public Sub Wait(Seconds As Single)
Dim lMilliSeconds As Long
lMilliSeconds = Seconds * 1000
Sleep lMilliSeconds
End Sub
09/11/2012, 16:34

accessman

kullanılışı şu şekilde

Kod:
Wait (5)