tags:

views:

39

answers:

1

I am creating a mysql reading program and I need to use a QListView with colunms and rows, but I can't work out how.

+2  A: 

You will want to use a QTableView if you have columns and rows. There is a very good .PDF chapter from a Qt book that is actually linked from Qt's own help documentation that covers this. You can get it here.

Arnold Spence