How to select multiple option on listbox?

29 Ansichten (letzte 30 Tage)
Epri Pratiwi
Epri Pratiwi am 13 Aug. 2020
Kommentiert: Epri Pratiwi am 17 Aug. 2020
I want to select multiple children song title from the listbox1 (left). The only thing I know is only select one by to to move to into listbox2 (right). If somebody know the functio how to do that, let me know :)
% --- Executes on button press in upload.
function upload_Callback(hObject, eventdata, handles)
global MyListOfFiles
global List
global i
if i<16
ListBoxValue = get(handles.listbox1,'value');
f=MyListOfFiles{ListBoxValue};
g=find(strcmp(List,f));
if isempty(g)==1
List(i,:)=MyListOfFiles(ListBoxValue);
set(handles.listbox2,'String',List);
i=i+1;
else
msgbox('you have already selected this song')
end
if i>15
msgbox('Switch to the next tab for operator setting')
end
else
msgbox('you have already selected 15 songs, Switch to the next tab for operator setting')
end
  2 Kommentare
dpb
dpb am 13 Aug. 2020
Bearbeitet: dpb am 13 Aug. 2020
Use the 'MultiSelect','on' property when create the listbox...
Epri Pratiwi
Epri Pratiwi am 17 Aug. 2020
thanks!!!

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Prabhanjan Mentla
Prabhanjan Mentla am 17 Aug. 2020
Hi,
There is an option to select multiple items in a list box. By default, it is not selected.
Here’s the option for Multiselect in Interactivity under Inspector.
To test, consider a sample case where to display all the items selected in a UI table. However, the order of items in UI table depends on the order of selection from list box.
Hope this helps.

Weitere Antworten (0)

Kategorien

Mehr zu Migrate GUIDE Apps finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by