Closing a custom window with an On Close() argument can cause JMP® to crash
In JMP, closing a custom window with an <<On Close() argument can cause JMP to crash. The problem occurs on Windows operating systems.
Example - the following code can cause the crash:
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA\Big Class.jmp" );
win = New Window( "Test",
<<On Close( Close( dt, No Save ) ),
dist = Distribution( Continuous Distribution( Column( :height ), Hori...