An example would be, I want to create an equal amount of this below...
![11852_pastedImage_2.png 11852_pastedImage_2.png](https://community.jmp.com/t5/image/serverpage/image-id/3277iDA6999EFB152742F/image-size/medium?v=v2&px=400)
for each data table opened, so the amount of Combo Boxes, or Button Boxes created each time would vary on the amount of data tables opened.
And I have a variable assigned to each Combo box and button box for tracking purposes (and it needs to be there). So this leaves me no choice but to create a variable using Eval, Parse, and Eval Insert each time so that I have a variable tracking each Combo/Button Box that I create.
Eval(
Parse(
Eval Insert(
"
if(DTopened > 1,
lbBB^i^ = Border Box(
H List Box(
dtListBox^i^ = Combo Box( listofdtnames ),
Picture Box( img ),
Combo Box( test ),
BBox^i^ = Button Box( \!"Fetch Temperature\!" )
)
);
"
)
)
);
Is there a way to eliminate Eval, Parse, and Eval Insert and use something simpler?
Edit: I forgot to mention that the code is inside a for loop with variable "i" looping