I have a bunch of images on my user form...
my goal is to have them look like they are blinking...
i tried something like this
i also tried using application.wait...but that didn't work either...the result of this is that all images are not shown (which is the default state) and i only hear one beep....if i put a break toggle on the line that shows the beep everything appears to work properly....but i guess i need to add something to this to slow down the processing...any help would be great...
my goal is to have them look like they are blinking...
i tried something like this
Code:
For i = 1 To 3 ' Loop 3 times.
For Each ctl In Main.Controls
If TypeOf ctl Is MSForms.Image Then ctl.Visible = True
Next ctl
Beep
For Each ctl In Main.Controls
If TypeOf ctl Is MSForms.Image Then ctl.Visible = False
Next ctl
Next i
i also tried using application.wait...but that didn't work either...the result of this is that all images are not shown (which is the default state) and i only hear one beep....if i put a break toggle on the line that shows the beep everything appears to work properly....but i guess i need to add something to this to slow down the processing...any help would be great...