Multiple choices in a listbox
Ältere Kommentare anzeigen
I want to select multiple elements of a listbox and show them in another one. How can i do this in a simple way?
thanks
Akzeptierte Antwort
Weitere Antworten (1)
Walter Roberson
am 31 Mai 2011
0 Stimmen
Set the 'Max' property of the listbox to be at least 2 greater than the 'Min' property. You will then be able to select multiple items in the usual ways (e.g., click-and-drag or control-click or as appropriate for your OS.) The listbox Value property will return an array of the indices of all the currently selected entries.
Note: the Callback will be called every time the selection changes, so if you are adding entries one by one using control or alt, then multiple callbacks will be generated.
3 Kommentare
Nuno Fernandes
am 1 Jun. 2011
Matt Fig
am 1 Jun. 2011
See the example I show above...
P
am 5 Sep. 2012
Have you tried using the 'handles' structure to save the data in the callback of the first listbox and then displaying using a callback for the second listbox?
Kategorien
Mehr zu Startup and Shutdown finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!