All,
I found a thread in the forums about a flashing label, however that particular example uses the form timer and I don't want to use a timer. This is what I have;
on a combo box after Update event I check for records in a specific table, If we have records I want to have a label flash in the screen a few times, (maybe ten times).
Right now I have a routine like this,
For X = 1 to 1000
if x mod 2 = 0 then
lbl.visible = true
else
lbl.visible = false
end if
next x
The problem is that it goes thru the For Next so quickly that you can't see any changes in the form.
Any ideas. I don't want to use a timer, I only want that to happen after the combo box is updated and the recordcount is greater than 0.
Thanks for your help
I found a thread in the forums about a flashing label, however that particular example uses the form timer and I don't want to use a timer. This is what I have;
on a combo box after Update event I check for records in a specific table, If we have records I want to have a label flash in the screen a few times, (maybe ten times).
Right now I have a routine like this,
For X = 1 to 1000
if x mod 2 = 0 then
lbl.visible = true
else
lbl.visible = false
end if
next x
The problem is that it goes thru the For Next so quickly that you can't see any changes in the form.
Any ideas. I don't want to use a timer, I only want that to happen after the combo box is updated and the recordcount is greater than 0.
Thanks for your help