how to use marquee property in status bar?
Visual Basic
3
Posts
3
Posters
0
Views
1
Watching
-
Just put your code in the
FormLoad
procedure.
Trinity: Neo... nobody has ever done this before. Neo: That's why it's going to work.
-
Just put your code in the
FormLoad
procedure.
Trinity: Neo... nobody has ever done this before. Neo: That's why it's going to work.
You could also use a timer and a label to move the text, though you might need a picturebox either side of the label as it is a container and will hide the label as it is moved across. Basically timer1_tick() labelStuff.left -= 1, with some checking for the maximum area it can go to. If you want to have it continuously scrolling (not just start again once finished), you'll need at least 2 labels, and it gets a bit trickier. Cheers, Daniel