Reputation: 11
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.
Upvotes: 1
Views: 2333
Reputation: 22272
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.
Upvotes: 2