Dynamically update listbox?
Posted: November 15th, 2006, 2:56 pm
Is it possible to dynamically update a listbox in a dialog window?
Normally, you can do something like this: windowObject.value = "Whatever";
Is there a way to change the values a listbox shows? I've been googling for hours and I haven't found anything. I've tried things like:
and
I sure hope this is a possibility. Help? Please! Someone help! 
Normally, you can do something like this: windowObject.value = "Whatever";
Is there a way to change the values a listbox shows? I've been googling for hours and I haven't found anything. I've tried things like:
Code: Select all
theListBoxObject.children = ["Selection 1", "Selection 2"];
Code: Select all
theListBoxObject.items = ["Selection 1", "Selection 2"];
