Tagged Questions

3
votes
2answers
604 views

Wrapping Text in a rich textbox, but not word wrapping it

I have a Windows Form with a Rich Textbox control on the form. What I want to do is make it so that each line only accepts 32 characters of text. After 32 characters, I want the text to flow to the ...
2
votes
2answers
1k views

Word wrap in Windows Forms (vb.net)

hai how to do word wrap in drawstring in vb.net 2005. please tell me
1
vote
2answers
227 views

Multiline TextBox with custom word wrapping

I am beginning to program in .Net and C# and currently I am stuck. I have a very similar problem as the posting on this question at stackoverflow : C#: Multiline TextBox with TextBox.WordWrap ...
1
vote
4answers
3k views

Multiline Text as the button label - WIndows Forms

Basically, i am creating a button in Oval shape. But my button label is too long to display in one line. So i wanted to split in to multiple lines. So the Oval button looks good. My Problem is, How ...
1
vote
0answers
296 views

Wrap text into semi-circle region

I'm modifying this glass button code to allow for both a Text and a TextExtra property. The goal is to render the Text in a larger/bolder font on the top half of the button and the TextExtra in a ...
0
votes
1answer
42 views

Measure wrapped string

I'm trying to create a Control that basically allows me to draw different strings underneath one another. However, the strings' width may not be larger than the control's. In order to solve that ...
0
votes
1answer
276 views

TextBox control limits lines to 1024 characters regardless of WordWrap setting. How to increase?

The TextBox control (in a .NET winforms application) seems to hard limit line lengths to 1024 characters, even with the WordWrap property set to false. Is there a way override this? I need to view ...