View Single Post
Old 10-12-2003, 10:16 AM   #3 (permalink)
Nisses
Shade
 
Nisses's Avatar
 
Location: Belgium
actually, the built-in vb-editor doesn't allow you to put in a timer of your own. You have to use the timer that's somewhat hidden/supplied in every form, so you only have 1 timer to work with

But what you posted there

Label1.Visible = True * Label1.Visible = False

is that a way to automatically alternate between actions for a timer? I somehow worked around it by going with the built in timer doing it conditionally

If (flag) Label1.Visible = True
Else Label1.Visible = False

is the condensed form. You mean with a simple asterisk you alternate automatically? Cool, lemme try

also, thanks alot for your help
__________________
Moderation should be moderately moderated.
Nisses 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