Can I change the font to bold for certain items in the list box and not the others?
Printable View
Can I change the font to bold for certain items in the list box and not the others?
I think this has to be done with subclassing.
any examples, links?
That is NOT done with subclassing, but, rather, GDI functions. It'll take me an extreme amount of effort and time to make this.
Why don't you try making a scrolling picturebox with labels as listitems? that way, you can have as much formatting as you want.
If you only want BOLD, use a listview instead.
thanks guys.
Hey Micro take a look at this thread there is a setColor api, but i cannot find set font.Quote:
Originally posted by Microbasic
That is NOT done with subclassing, but, rather, GDI functions. It'll take me an extreme amount of effort and time to make this.
Why don't you try making a scrolling picturebox with labels as listitems? that way, you can have as much formatting as you want.
If you only want BOLD, use a listview instead.
Listbox colors
thank you for taking the time MicroBasic. I really appreciate it.