To clarify Paulo's answer:
You cannot perform multi-line processing during development. But at runtime, you can set the .Text property of each ToolStripButton as follows:
ToolStripButton1.Text = "This is " & ControlChars.CrLF & "a button."
This will give you a multi-line display for your text.
source
share