A
a7zulu
Does anyone know what is the datatype of an array of strings in Excel?
for an array of doubles it is usually a FPARRAY structure
typedef struct FPARRAY{
unsigned short iRows,
iCols;
double dArray[FPARRAY_SIZE];
} FPARRAY;
What is the data structure for an array of Strings?
Thanks
for an array of doubles it is usually a FPARRAY structure
typedef struct FPARRAY{
unsigned short iRows,
iCols;
double dArray[FPARRAY_SIZE];
} FPARRAY;
What is the data structure for an array of Strings?
Thanks