RE: selection based list box

2017-08-15 Thread Tai Bui via 4D_Tech
Hi, Have you tried passing 0 for the row number? According to the documentation: "If position is 0 and if the action parameter contains Listbox replace selection or is omitted, all the rows of the listbox are selected. If the action parameter contains Listbox remove from selection, all the listb

Re: selection based list box

2017-08-15 Thread Charles Miller via 4D_Tech
I though I did but will try again. Guess I did not try that combination. tried all else thanks that did it Regards Chuck On Tue, Aug 15, 2017 at 4:08 PM, Tai Bui via 4D_Tech <4d_tech@lists.4d.com> wrote: > Hi, > > Have you tried passing 0 for the row number? According to the > documentation: > "

Re: selection based list box

2017-08-16 Thread Chip Scheide via 4D_Tech
you can also clear, and recreate the selection set. Given : Listbox selection set name = "My_Listbox_Set" Clear set("My_Listbox_Set") Create set([table];"My_Listbox_Set") or listbox get table source(My_Listbox;$Tablenum) Create set(table($Tablenum)->;"My_Listbox_Set") On Tue, 15 Aug 2017 15:53: