Hello,
I looking a way for fast loading data to table.
For example:
I have data structure of Students.
struct STUDENTS
{
int ID;
char Name[15];
char Lname[20];
int Picture_BitmapID;
}
I create a table wich collumns suitable data types. (Numeric[int], string,string,picture).
I have 10,000 records. If i using "for" loop on each row and use SetTableCellAttribute(,,ATTR_CELL_VAL,) its very slow for each cell.
Isthere a way toload data more faster?
Best Regards
Boris