vote up 0 vote down star

Hi, I'm coding a Windows Forms App that has a StatusStrip that displays status informations to the user, and hints when the mouse is over relevant things. However, when the program is on it's minimal window size, the text sometimes is bigger than the whole StatusStrip, and the label simply dissapears. There must be a workaround to this, ideally I'd like it to auto ellipsis when the text is bigger than the window allows. But how?

Thanks in advance =)

flag

It's enough to use the vb.net tag. Please don't use VB.NET in the title unless the question is specific to VB.NET. – John Saunders Sep 5 at 1:54
Ok ^^ I'll just use the tag from now on. – Camilo Martin Sep 5 at 2:13

1 Answer

vote up 0 vote down check

Set TextAlign = MiddleLeft

Set Spring = True

You won't get ellipses this way, but it won't disappear either.

If you want ellipses you may have to actually measure the width, and adjust your text accordingly. Not an easy task.

link|flag
Wow, that's quite stubborn. I'd like to know why it doesn't have AutoEllipsis as a property. :( – Camilo Martin Sep 5 at 2:25

Your Answer

Get an OpenID
or

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