Problem with On Close() statement in New Window
I have a script that takes in a table, produces two summary tables dtMean and dtStdDev, and then draws some tabulates and opens then in a new window like so:vlb = V List Box(
dtMean << Tabulate(
...),
dtStdDev << Tabulate (
...)
);
closeTables = Expr(
Close( dtMean, NoSave );
Close( dtStdDev, NoSave );
);
nw = New Window( "Tool to tool matching",
Show Menu( 0 ),
Show Toolbars( 0 ), On Clos
...