cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
miguello
Level VII

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 Close(closeTables), vlb
);

this On Close statement causes error:

Name Unresolved: On Close in access or evaluation of 'On Close' , On Close( closeTables ) /*###*/

[OK]

 

But if I run closeTable separately - tables close.

Why and how to fix?

1 REPLY 1
miguello
Level VII

Re: Problem with On Close() statement in New Window

Nevermind, it needs to be

<< On Close()

not 

On Close()

 

 

 

Recommended Articles