G
Guest
I am trying to make a label appear on a form for a short period of time and
then disappear. It starts out invisible when form loads. I know there are a
number of ways of doing this, but I don't understand why my way (below) does
not work. The label just does not appear.
____________
Sub....
'Some stuff
..
..
..
Me!Label28.Visible = True
Call delay(10000)
Me!Label28.Visible = False
End Sub
_________
Private Sub delay(time As Long)
Dim loopindex As Long
loopindex = 1
Do While loopindex < time
loopindex = loopindex + 1
Loop
End Sub
then disappear. It starts out invisible when form loads. I know there are a
number of ways of doing this, but I don't understand why my way (below) does
not work. The label just does not appear.
____________
Sub....
'Some stuff
..
..
..
Me!Label28.Visible = True
Call delay(10000)
Me!Label28.Visible = False
End Sub
_________
Private Sub delay(time As Long)
Dim loopindex As Long
loopindex = 1
Do While loopindex < time
loopindex = loopindex + 1
Loop
End Sub