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