Fairly straight forward question, is it possible to align text (left, right, center etc...) in comboboxes in VB6? If so, how?
When the text is longer than the width of a combobox, what is shown of the text starts somewhere in the middle of the text.
|
|
Fairly straight forward question, is it possible to align text (left, right, center etc...) in comboboxes in VB6? If so, how? When the text is longer than the width of a combobox, what is shown of the text starts somewhere in the middle of the text. |
||
|
|
|
|
The answer unfortunately is not so straightforward. There is a code example here: http://vbnet.mvps.org/index.html?code/comboapi/comborightalignstylebits.htm that will right align the list items in a combo box. There is no example of centering the text however. |
||
|
|
|
Here's some code a friend of mine wrote for autosizing the combo box to it's contents. Code
|
||||||
|
|
|
Here's a link to VB6 code for automatically sizing the drop-down portion of a combo-box to fit the contents. vbAccelerator.com usually has high quality code. Interestingly the vbAccelerator code looks very similar to the code in this answer (right down to the comments), but the vbAccelerator code works when the combo box has a different font to its parent form, unlike the code in the other answer. |
||
|
|