W H Y T H I S ? (No 2)

  • Thread starter Thread starter giannis
  • Start date Start date
G

giannis

When i run this code with F8 ,
works very well; but if i run normal
i cant see the blinking of label !!!
Do
Label.Visible = False
t = Timer
Do While Timer - t < 2
Loop
Label.Visible = True
t = Timer
Do While Timer - t < 2
Loop
Loop

Is there any problem with the
DO..LOOP and the drawing
of the forms ?
 
Again, put a DoEvents inside the loop so that other processes in Access have
a chance to complete their work.

--
John Viescas, author
"Microsoft Office Access 2003 Inside Out" (coming soon)
"Running Microsoft Access 2000"
"SQL Queries for Mere Mortals"
http://www.viescas.com/
(Microsoft Access MVP since 1993)
 
Back
Top