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

Popular posts from this blog

c++ - How do I get a multi line tooltip in MFC -

asp.net - In javascript how to find the height and width -

c# - DataTable to EnumerableRowCollection -