Pause Script for certain time! (Splash)
I have a program with a splash screen but I want it to show up for a certain amount of time:
VB Code:
Public fMainForm As frmMain
Sub Main()
frmSplash.Show
frmSplash.Refresh
[B]' I would like to create a puse of some sort in here![/b]
Set fMainForm = New frmMain
Load fMainForm
Unload frmSplash
fMainForm.Show
End Sub
Is that possible, I know it is in other BASIC languages with pause(ms) :sick:
Thanks in advance
Re: Pause Script for certain time! (Splash)
Try the sleep function
VB Code:
Declare Sub Sleep Lib "kernel32.dll" (ByVal dwmilliseconds As Long)
'Somewhere in project
Sleep 1000 'pause for 1 second
Re: Pause Script for certain time! (Splash)