How can I append to this Col List Box?
This code is supposed to add each name into the list box but it doesn't work. Has it got to do with the data type? Also, if you're wondering why im using the 1st element, its because I wanted to populate other columns within that list for E.G -> col[2] = column(dt, "height");Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
col = {};
col[1] = column(dt, "name");
New Window(
...