Listbox Column Heading Bold

Desktop Windows App

How do i set the column heading to bold (or for that matter any font combination)?

use my custom listbox header class and you can do what ever you’d like :slight_smile:

www.rdS.com/lb_header.zip

Thanks you Sir!

You could cheat and set the Listbox’s font properties to the font characteristics you want and then set things back to the normal characteristics in the CellTextPaint event handler. For example, set the ListBox Font setting to Bold. Then in the CellTextPaint event put

g.Bold = False

to show the cell in it’s normal state.

@Dale Arends : so simple and so awesome !

Thanks Dale.