Re: QTableWidget and memory
I don't use excel and I don't know the source code of excel. But if you would use a model and QTableView the memory would surly shrink since only the actually shown parts would be "load into memory".
Re: QTableWidget and memory
Thanks for reply.
I decided to make my own model inherited from QAbstractItemModel. What should this
class implement and what shouldn't it?
hannesvdc
Re: QTableWidget and memory
If you want to use a table why do you don't use QAbstractTableModel? For how to deal with custom model have a look at "Model/View Programming" in the docs (the section "Creating new models" should be your special interest)