An example would be, I want to create an equal amount of this below...
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