Reputation: 20366
If the text is longer than the width of an MFC ComboBox, it stops accepting new characters. If paste long text to an MFC ComboBox, the remaining part (longer than displayable) are trimmed.
How to allow full text be entered?
Upvotes: 3
Views: 1891
Reputation: 10756
The Combobox control has a property 'auto'
that automatically scrolls text that is too long to fit. By default it's false. Set it to true to enable this behaviour.
Upvotes: 8