Scrolling Text in .NET
Uploader Comments (NocaCow)
All Comments (9)
-
This is great! I only know some basic VB, but I do know more than enough to write a very nice program, which I already have. Right now, I'm working on a text-based game, and it would be great to add this effect to it. One problem, though: I don't know what any of this means. I just copy-pasted. Once I get to this point, I'll figure a way to add it in. Thanks man!
-
Yes!!! Thank you so much! Exactly what I was looking for.
-
Try this:
place a label on the form and change the text to "This Is A Marquee Test. "
set Label1 AutoEllipsis to True.
place timer on form,.
set Timer1 Enabled to true.
double click Timer! and use this code this code: ' Dim char and get first character form Label1 Dim char1 As Char = Label1.Text = .Text(0) ' Remove first character form Label1 and place at end Label1.Text = .Text = Label1.Text = .Text.Remove(0, 1) & char1
Start Debugging.
-
@NocaCow Gr8 tut but how do i make it scroll back?
Like so i can allways see it.
Like backwars then forwards
-
thx
-
excellent 10/10 thank you :)
-
How can i make it restart after it's done typing?
-
Get an error on 17k letters
-
A++ description. Would read again.
Assuming a basic knowledge of the Visual Studio environment.
NocaCow 2 years ago