Hallo,
I tried to fill worksheet cells by following C function, but it doesn't operate, if worksheet cells are empty. Who knows how to proceed?
void fill (string strData) {
Dataset index (strData,57);
string str;
int i;
for (i=0;i<=10;i=i+1) {
index[i]=i;
};
}
Andreas