wordwrap

In Vb .Net the Lable's property wordwrap was removed. How can I by-pass this Is there something else to use instead
Thanks for any reply!


Answer this question

wordwrap

  • SharpCarp

    YES, the word wrap property of a label in VB6 doesn't exist in VB.NET. Is there a workaround for it
    Thanks.

  • Garg Umesh

    But Label do word wrap automatically, by default. It will not be seen if it have AutoSize property on.

  • GedMarc

    Thank's man, this should do. I thought that there might be a work-around.

  • DaveHot

    I thought Label do word wrapping automatically, isn't it

  • Rick X

    You can turn off AutoSize and set size of the label manually, enough to hold text in most situations. Or you can use TextBox with ReadOnly setting, so if text is more than you expect - scrollers will appear.

  • vaghelabhavesh

    But if I put a label on a form and the text is larger than the form, the label doesn't adjust so that it fits into the form. This is my problem.

  • wordwrap