ok I have a vba splash form, on it i have a label named startingin
I have made a code to count down from 5 and then close the form.
It works ok but i would like the startingin label to also count down. At the moment it is stays at 5 for 5 seconds and then closes
how can i fix this?
help is appreciated
I have made a code to count down from 5 and then close the form.
It works ok but i would like the startingin label to also count down. At the moment it is stays at 5 for 5 seconds and then closes

Code:
Private Sub UserForm_Activate()
NewHour = Hour(Now())
newMinute = Minute(Now())
startingin = 5
Do Until startingin = 0
newSecond = Second(Now()) + 1
Application.Wait TimeSerial(NewHour, newMinute, newSecond)
startingin = startingin - 1
Loop
Unload fsplash
End Sub
help is appreciated
