If I wanted to blink an image control within the following Do While... Loop portion of the code without having to pause the Do While... Loop timer, how can I code it so it works properly?
Here is a sample of the code I have so far:
Here is a sample of the code I have so far:
Code:
Do While timeGetTime > 0
timeGetTime = timeGetTime - 100
Wait 100
'Where I want to blink an image for 3 cycles of 200 milliseconds between intervals
Loop