How to insert a paragraph?
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!
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!
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?
about the Lable control. By default the AutoResize is set to True but
still, I do not see the multiline available. I'm using VS.NET
professional 2005.
Again, thanks!
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?
right on the form instead of on the Property fly-out on the right?
ahmedilyas wrote:
sorry how do you mean by the "property flyout" on the right?
I mean the Properties Window. Is there a way to edit my texts without going to the Properties Window and Text?
ahmedilyas wrote:
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?
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.
looking for a way to edit the texts in design mode right on the Lable
and not on the Property Window. If this option is not possible, I will
have to use your method then.
Thanks!
Properties Window then. Imagine you have a whole paragraph, it's
tedious and hard to edit the texts on the Text property. I guess I will
have to use the code behind to edit the texts then.
Thanks!
