Need help with populating Col List Box
Part of my App's GUI has a button that opens a table, and a Col List Box that I need to populate with columns from that table.If I open the table first and then create Col Lis Box as in this modified Example from Scripting Index, everything works fine:Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
New Window( "Col List Box Example",
lb = Col List Box()
);
lb << Append (dt
...