View Single Post
Old 10-12-2003, 07:58 AM   #2 (permalink)
glytch
I am not permanent.
 
glytch's Avatar
 
Location: Tennessee
Access has built-in VB editor doesn't it? (I'm pretty sure it does). Anyway, bring that up, add a timer control, double-click it to bring up your code (don't forget to set your timer interval).
In your code window for your timer control, type this:

Private Sub Timer1_Timer()
Label1.Visible = True * Label1.Visible = False
End Sub

Of course, you'll probably have to insert your names for your timer and label controls (I just used timer1 and label1). That should do it! Let me know if you need any more help. I'm no expert, but I can do a few things.
__________________
If you're flammable and have legs, you are never blocking a fire exit. - Mitch Hedberg
glytch is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76