Is it possible to made a TCombo edit caret 'wider' or to 'bold' it?
问题 I have an mode that uses TComboBox.SelStart to indicate progress along the edit text string. In this mode I would like to make some kind of change to the edit caret, for example to widen it to 2 pixels or 'bold' it in some way to indicate this mode and to have it grab more attention. Is this possible? 回答1: Yes, as Alex mentioned in his comment, this can be done using API calls. Example: procedure SetComboCaretWidth(ComboBox: TComboBox; Multiplier: Integer); var EditWnd: HWND; EditRect: TRect;