JSL: Update/redraw ListBox's contents
I have a ListBox ("listDisplay") that is initialized with an empty list ("workingList") on a form. As the user works through the form, new entries are added to "workingList". Is there a way to force "listDisplay" to redraw itself with the updated "workingList" on demand? I've tried <<UpdateWindow, but that didn't do the trick. If that doesn't work, how can I tell "listDisplay" to overwrite its cur...