ListBox Text paragraph format

Hello,

I’ve a Listbox populated from mysql database. It has 1 column and I’m trying to populate multiple mysql columns in the same row and column. Is there any way to control the text break lines?

I’m asking it because I want to display the mysql data with the following format:

Column1 + Column2
Column3

Thank you very much.

If this is for Desktop, no, as the ListBox cells cannot wrap to multiple lines, even if you add a return character.

Thank you for your reply David.

Yes this is for desktop and I need to display multiple line of text in one row and perhaps combine some cells.

If you draw the text yourself in the cell text paint event you should be able to make it wrap across multiple lines as long as your row is tall enough.

Thank you. I will try it.