On Timer Help

  • Thread starter Thread starter Angelsnecropolis
  • Start date Start date
A

Angelsnecropolis

I'm trying to create a Label whose caption changes every XX seconds.

I know about the ontimer event and how to use the label.caption in the code
but how do I get it to change to a different caption that is predefined in
the code?

I searched here but wasn't able to locate anything.

Thanks.
 
I'm trying to create a Label whose caption changes every XX seconds.

I know about the ontimer event and how to use the label.caption in the
code but how do I get it to change to a different caption that is
predefined in the code?

I searched here but wasn't able to locate anything.

Thanks.

Your question doesn't make total sense to me. If you know about using
the caption property then what is it that you don't know?

Me.LabelName.Caption = "Your New Caption"
 
I'd like the caption to change every 15 seconds to a different pre-defined
caption and loop indefinatly between several pre-defined captions.

ex:
Caption = "Caption1"
15 seconds later
Caption = "Caption2"
15 seconds later
Caption = "Caption3"
etc...

Thanks.
 
Back
Top