Specific format to one item in TColumnListBox

Hi

It is possible to declare a format on a specific column, but it is not possible to apply a specific format to an item using html.
The format of the first column is "normal"
                    WITH List_Geog.ListBoxItems.Add DO
                    BEGIN
                        Strings.Add('AAAAA');
                        Strings.Add('1');
                    END;
        

                    WITH List_Geog.ListBoxItems.Add DO
                    BEGIN
                        Strings.Add('BBBB');  // I would like to display this info in Bold (I tryed using "<B>BBBB</B>" without success
                        Strings.Add('1');
                    END;
                      
Is it possible to do that ?

best regards
Olivier

Sorry, the TColumnComboBox does not support HTML formatted text at this moment.
For a multicolumn dropdown list with HTML formatted text support, you might have a look at TAdvGridDropDown.