I'm very new to VS.NET C#. I'm creating a simple app. to launch a
flash tutorial. In the form, how do I insert a paragraphc explaining
what this app. is going to be I tried the Lable control but it does
not give me multi-line option. What do I need to use
Thanks!

How to insert a paragraph?
fighter92
Chimme
Again, thanks!
SelArom
Thanks!
soni_ace
Buck_Danny
xplosiv_1
Sharp24597
I set the AutoSize to false and the multiline works. The problem is I do not want to always edit my texts from the Properties Window. I wonder if there is a way to edit the texts right on the Lable itself.
ManishSingh
multiline property is only available for the Textbox control.
I've actually just tried to set a long piece of text on a Label control (with autosize = true) and it works, it does show the text in its full.
I'm also using VS.NET pro 2005
This is what I did for my test on a label:
this.theLabel.Text = "this is just a small label to start out with and now..." + Environment.NewLine + "this sentence should be on a new line";
does this not work for you
Dr.9
I mean the Properties Window. Is there a way to edit my texts without going to the Properties Window and Text
RogerRV
tats
ComputerWhiz
yeshman
maybe you should set the autosize = true on the label if you have not already.
you may also maybe wish to use a multiline textbox, setting it to readonly
does this help
pgw1959
Thanks!