How to select multiple option on listbox?

26 views (last 30 days)
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 Comments
dpb
dpb on 13 Aug 2020
Edited: dpb on 13 Aug 2020
Use the 'MultiSelect','on' property when create the listbox...

Sign in to comment.

Accepted Answer

Prabhanjan Mentla
Prabhanjan Mentla on 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.

More Answers (0)

Categories

Find more on Migrate GUIDE Apps in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!