up vote 0 down vote favorite
share [g+] share [fb]

I have created a wizard form and each page of the form will display some help text.

I either need a

1.Label control where I can fix the height and width of the label so it doesn't grow to long but rather wraps the text inside my fixed width and height.

But a label doesn't have sizing handles and seems to automatically adjust to the content.

OR

2.A textbox control (where I can already set the height and width if I set multiline off) however the user should NOT be able to edit the textbox...in fact the textbox should not be able to recieve the focus at all. (like a label)

Can someone tell me how to do one or the other.

Seth B Spearman

link|improve this question

77% accept rate
feedback

2 Answers

up vote 2 down vote accepted

For Label, You should set label's Autosize property to false

For Textbox, set Enabled Property to false

link|improve this answer
Thanks...just what I was looking for. Seth – Seth Spearman Jul 23 '09 at 4:46
feedback

Labels have an AutoSize property, which defaults to true - just set it to false in designer, and resize as needed.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.