I use GetTableCellRangeVals to get blocks of numbers from my tables all the time, but I don't understand how to declare an array of strings to get a block of strings from a column of a table.
My table includes a single column of strings limited to no more than 24 characters wide, and there are 16 rows.
I tried declaring a variable like the following:
char myStringList[16][24];
And then tried calling GetTableCellRangeVals to grab the strings entered in the table and put them into myStringList. But GetTableCellRangeVals won't use myStringList because myStringList is a 'pointer to an array[24] of char' but GetTableCellRangeVals wants a 'pointer to a pointer to a char'.
I tried looking through the example software but couldn't find anything. I found a work-around by looping 16 times and calling GetTableCellVal, but I'd prefer to know how to do it right.
Thanks for the help!
Brian