I need to be able to scroll text on a label i am using this for the credits portion of a tic tac toe game. How can I make this happen we\'ve only been taught to scroll throu
Since there may be a reason to not use a text box (not wanting the text to be selectable and copyable for instance) here is another solution that works for me:
Place a panel in location where you want the label to be, set it's AutoScroll property to true. Then place the label in the panel, anchor it and set it's AutoSize property to true. This will make the panel provide the scroll bars if the label's text extends outside of the panel.
You may have to set the MaximumSize for the label if you want the text to only scroll in one direction (set a maximum width size if you want only vertical scrolling or set a maximum height if you want only horizontal scrolling).