Hi,
I have a very large table of about 1000 rows and columns of different data types (strings, float,int,images, etc)
Currently, I'm loading this table using SetTableCellAttribute and am using other optimization techniques like hiding the table before displaying it and creating all the rows in the begining.
But this is still really slow, it takes about 45secs for the table to load.
Is there any way that I can use SetTableCellRangeVals in this case?
I cannot load a column at a time as this causes too many iterations over the data which is stored in C++ STL datatype vector. ( I am using LabWindows with Visual C++)
Is there a way to convert all the data to string type and display it by calling SetTableCellRangeVals ?
Any help/tips will be highly appreciated!
Thanks.