rpt = New Window("Image Gallery Report",
TabBox("Overlay Maps",
H List Box(
row1_hlist = V List Box(Text Box("Image Gallery from: " || "INTW.203P"),
//Text Box("Found " || Char(N Items(image_files)) || " images"),
Spacer Box(Size(0, 10))),
Spacer Box(Size(0, 20)),
// Second row label
row2_hlist = V List Box(Text Box("Image Gallery from: " || "INTW.103P"),
//Text Box("Found " || Char(N Items(image_files)) || " images"),
Spacer Box(Size(0, 10))),
Spacer Box(Size(0, 20))
),
"Indiviudal",
H List Box(
// Second row label
row3_hlist = V List Box(Text Box("DROPDOWN "),
//Text Box("Found " || Char(N Items(image_files)) || " images"),
myListbox = ComboBox(Lot_List, doListChoice),
doListChoice = expr(
choice = myListbox << getSelected;
show(choice););
Spacer Box(Size(0, 10)),
report_conatiner = v list box()
),
Spacer Box(Size(0, 20)),
// Second row label
row5_hlist = V List Box(Text Box("Image Gallery from: " || "INTW.103P")
//Text Box("Found " || Char(N Items(image_files)) || " images"),
)
)
),
);
I have got the report from above script but its not interactive and I am getting access error on report conatiner. Could you please help
rpt = New Window("Image Gallery Report",
Tab Box(
"Overlay Maps",
H List Box(
row1_hlist = V List Box(
Text Box("Image Gallery from: " || "INTW.203P"),
//Text Box("Found " || Char(N Items(image_files)) || " images"),
Spacer Box(Size(0, 10))
),
Spacer Box(Size(0, 20)),
// Second row label
row2_hlist = V List Box(
Text Box("Image Gallery from: " || "INTW.103P"),
//Text Box("Found " || Char(N Items(image_files)) || " images"),
Spacer Box(Size(0, 10))
),
Spacer Box(Size(0, 20))
),
"Indiviudal",
H List Box(
// Second row label
row3_hlist = V List Box(
Text Box("DROPDOWN "),
//Text Box("Found " || Char(N Items(image_files)) || " images"),
myListbox = Combo Box(Lot_List, doListChoice),
doListChoice = Expr(
choice = myListbox << getSelected;
Show(choice);
);
Spacer Box(Size(0, 10));,
report_conatiner = V List Box()
),
Spacer Box(Size(0, 20)),
// Second row label
row5_hlist = V List Box(
Text Box("Image Gallery from: " || "INTW.103P")
//Text Box("Found " || Char(N Items(image_files)) || " images"),
)
)
),
);
Edit (jthi): added JSL formatting and removed some unnecessary whitespace