Reputation: 1233
Here's a screen shot of the problem:
As you can see the left-most part of the string is getting truncated. This is just a standard combobox and there's nothing overlapping it on the form.
Upvotes: 2
Views: 1394
Reputation: 55
Just reproduced this.
As previous comments suggest, your label is most definitely too long.
Please reconsider the placement of your elements, perhaps the label should end with more space between the label and the combobox.
This can easily be done via the designer window (Shift + F7 whilst on the code behind e.g. form.cs)
Upvotes: -1
Reputation: 122
Bring the combobox to the front. It seems like the label before your combobox is in front of it.
Upvotes: 2
Reputation: 17858
Your label is too long!
its overwriting the edge of that edit box.
Upvotes: 7