Hi JMP expert,
Is there a function in JSL to display text box in new line? Below script still want display the text in horizontal direction. Thanks
nw = New Window("Reports", <<Journal,
hlb = H List Box(
lub = Lineup Box(
tb1 = Text Box( "Zone1:Cpk<1.33 && DSA>1.5" ) ,
tb2 = Text Box( "Zone2:Cpk<1.33 && DSA<1.5" ) ,
tb3 = Text Box( "Zone3:Cpk>1.33 && DSA>1.5" ) ,
tb4 = Text Box( "Zone4:Cpk>1.33 && DSA<1.5" ) ,
);
);
);