Hi all
I'm trying to let images appear after a fixed amount of seconds. So 3 second wait, image 1 appears, 3 second wait, image 2 appears, 3 second wait and image 3 appears.
I've tried something but the problem is that all three images appear at the same time (dunno why) after 9 seconds.
I want them to keep appearing one by one until the user answers a question correctly.
in module:
in program:
I'm trying to let images appear after a fixed amount of seconds. So 3 second wait, image 1 appears, 3 second wait, image 2 appears, 3 second wait and image 3 appears.
I've tried something but the problem is that all three images appear at the same time (dunno why) after 9 seconds.
I want them to keep appearing one by one until the user answers a question correctly.
in module:
Code:
Public Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)
Code:
intSeconden = 3 Call Sleep(intSeconden) imgHoofd.Visible = True Call Sleep(intSeconden) imgMidden.Visible = True Call Sleep(intSeconden) Imgvoet.Visible = True
Comment