Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Updating a drop list

From: kpeters:otaksoft at: 11-Dec-2007 10:59

On Tue, 11 Dec 2007 13:05:14 -0500, Alan wrote:
> I'm having trouble updating a drop-down list. > > The drop list is populated by reading a database and storing names in a variable (data_list): > > data_picked: drop-down data data_list > > If I update the data base and re-read the updated db I see that the variable holds the correctly > updated info but I can not get the drop list to display it. > > "Show" does not seem to work as it does on other widgets. > > (2nd time sent. Sorry if it duplicates but I waited a few hours without seeing the original post > turn up in the ML) > > Alan Macleod
Alan ~ something like below (if I understand you correctly)? Kai form: layout [ sel: choice 50 "A" "B" "C" btn "Change" [ sel/texts: [ "D" "E" "F" ] show sel ] ] inform form