var selectObj = document.all.YOUR_LISTBOX_FIELD_NAME;
var opt = document.createElement("option");
selectObj.options.add(opt);
opt.innerText = "MY LABEL";
opt.value = "MY VALUE";
One possibility is to perform a query for your programs, loop through the programs returned, and then call the code above inside the loop to add an option for program.
Chris
var selectObj = document.all.YOUR_LISTBOX_FIELD_NAME;
var opt = document.createElement("option");
selectObj.options.add(opt);
opt.innerText = "MY LABEL";
opt.value = "MY VALUE";
One possibility is to perform a query for your programs, loop through the programs returned, and then call the code above inside the loop to add an option for program.
Chris
Copyright © 2025 Aras. All rights reserved.