J
Joe
Hello All:
Does anyone have good way to make an object flash? I'm
trying to bring the user's attention to an area of a form
when they make a selection. I've tried the following, but
it happens a little too fast.
Dim ctr As Integer
Dim backer As Integer
Dim div As Integer
ctr = 1
While ctr <> 10000
ctr = ctr + 1
div = ctr Mod 2
If div > 1 Then backer = 1 Else: backer = 0
Me.boxParameter.BackStyle = backer
Wend
Any help is greatly appreciated.
Thanks,
Joe
Does anyone have good way to make an object flash? I'm
trying to bring the user's attention to an area of a form
when they make a selection. I've tried the following, but
it happens a little too fast.
Dim ctr As Integer
Dim backer As Integer
Dim div As Integer
ctr = 1
While ctr <> 10000
ctr = ctr + 1
div = ctr Mod 2
If div > 1 Then backer = 1 Else: backer = 0
Me.boxParameter.BackStyle = backer
Wend
Any help is greatly appreciated.
Thanks,
Joe