cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • DownloadSemiconductor Toolkit: Tools to create wafer maps, add wafer geometry to graphics, explore die defects & compare wafers.
  • Discovery Summit 2026: Early User Edition - September 23-24.Register. It's free.
  • See how to design an experiment, explore factor-response relationships, assess tradeoffs, and ID best settings. Register for Sep. 11 Mastering JMP.

Discussions

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

Need Help: Fit Model Window and Report Window in Listboxes

Hello,

 

I have a problem: I want to put the "fit model" window to a listbox, when user presses the run button, I can put the report window to another listbox. But the report window doesn't go to the listbox automatically when I press the run button , how to resolve it? 

6 REPLIES 6
Byron_JMP
Staff

Re: Need Help: Fit Model Window and Report Window in Listboxes

I'm not quite sure if I understand what you're asking, could you post an example of what you're trying to do?

JMP Systems Engineer, Health and Life Sciences (Pharma)
lehaofeng
Level V

Re: Need Help: Fit Model Window and Report Window in Listboxes

Thank you! This is my script: 

Tab Box(
	"setting",
	V List Box(
		H List Box( align( center ), Button Box( "select datatable" ), Spacer Box( size( 5, 1 ) ), fit_tb1 = Text Box( "raw data.jmp" ) ),
		dlg = dt1 << fit model( Y(  ), Effects(  ), 
		<<keep dialog open( 1 ) )
	),
	"report",
	V List Box(
		【 put dlg(fit model) run results to here! but how? 】
	)
) 

 

jthi
Super User

Re: Need Help: Fit Model Window and Report Window in Listboxes

lehaofeng
Level V

Re: Need Help: Fit Model Window and Report Window in Listboxes

TKS, I have tried it , but it didn't work.

The problem is that when I press the run button(in fit model platform), the report window cannot be controlled well and is not easy to reference.

 

jthi
Super User

Re: Need Help: Fit Model Window and Report Window in Listboxes

You might have to capture the script on trigger, close the report window and then rerun and add it to the vlb. 

-Jarmo
lehaofeng
Level V

Re: Need Help: Fit Model Window and Report Window in Listboxes

Yes, I am currently stuck at the step of capturing the script. I don’t know how to automatically capture the script for the report window when it triggers.

Recommended Articles