BarryMK
4 strings are enough
- Local time
- Today, 10:34
- Joined
- Oct 15, 2002
- Messages
- 1,350
I'd like to use the OnTimer event to make a control label blink a couple of times and then remain static and visible. Normally the code below would run a piece ofcode once only after loading the form but the blink code doesn't work inside this Ontimer event as it stands. Any ideas?
Code:
‘Put:
Dim t as long
‘in the declarations section at the top of your form.
‘In the On Load event, put:
t = 0
‘In the On Timer event put:
If t = 0 then
'Your code here
Me!lblProbDesc.Visible = Not (lblProbDesc.Visible)
t = 1
End If