textbox - How do I get an auto-scrolling text display on .NET forms - e.g. for credits -
need show credits screen want acknowledge many contributors application.
want automatically scrolling box, credits roll @ end of film.
a easy-to-use snippet make multiline textbox. timer may insert line after line , scroll end after that:
textbox1.selectionstart = textbox1.text.length; textbox1.scrolltocaret(); textbox1.refresh();
not best method it's simple , working. there free controls available auto-scrolling.
Comments
Post a Comment