Dear Sharonc
A label should display multi lines by default, if this isn't the case with yours then I'm guessing that you have set the AutoSize property to TRUE (default is false). If this is the case you must also set the WordWrap property to TRUE (default is false). If you now resize the label - you should have multi-line text.
Another way is to set the caption from code, eg:
Label1.Caption = "first line text" & Chr(13) & "second line"
The above should work with any settings of AutoSize and WordWrap - chr(13) simply means start a new line and you can have as many chr(13) as you want.
Kate