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.
  • Use JMP Clinical with CDISC-compliant data. Review studies, ID safety and efficacy signals & communicate findings with interactive graphics. Register to see how. Aug. 27, 2 pm US ET.

Discussions

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

Text Edit Box Inside a For Loop

Hi,

 

I want to generate text edit boxes using a For Loop. I was wondering how could I get text from each text box and use it later (I need to use it later in a Select Where function)

 

Here is my script. It can generate the display boxes but seems can not get the text from them. There is an error message.

prefix = [];
win = New Window("Start",
	<<Modal,
	<<ReturnResult,
    
	
	vlb = Vlistbox(),
	
	For(i = 1, i<= N items(files), i++,
	vlb << Append(Vlistbox(
				Text Box(concat("Adding Prefix",char(i))),
			        Text Edit Box("" <<Script( Print( prefix[i] << Get Text ))),
				),
				),
	//show (prefix[i]);				
				);
	
	
    H List Box(
		Button Box("OK",
			
		),
		Button Box("Cancel",
			stop_flag = 1;
		)
	),
);



If (stop_flag,
	Stop();
	);

 Any help would be really appreciated!

 

1 REPLY 1
peng_liu
Level VII

Re: Text Edit Box Inside a For Loop

Missing a comma?

peng_liu_0-1596206087721.png

 

Recommended Articles