Code:
string scrolltext = "Note -: This survey has been designed to determine your level of satisfaction with Administration Affairs Dept services. Your participation in this survey is important as it helps us to identify any areas of concern with our services and helps us to continuously review and improve the services we bring to u!!!!!!!!"; //string Lyrics = "This song is just six words long"; int CurrentPosition = 0; const int CharactersToShow = 100; for (int i = 0; i < scrolltext.Length; i++) { label2.Text = CharactersToShow + CurrentPosition > scrolltext.Length ? scrolltext.Substring(CurrentPosition) : scrolltext.Substring(CurrentPosition, CharactersToShow); CurrentPosition++; label2.Update(); thread.sleep(250); }
Comment