In VB.Net 2005
Put you label on the form.
Go to the Text Property and Press the Dropdown down arrow and type your mutliple lines of text in.
If you programmatically setting the property
something like
| | Label1.text = "Line1" & vbCRLF & "Line2" |
Should work just fine and result in label text being shown as
Line1
Line2