How to select multiple option on listbox?

26 vues (au cours des 30 derniers jours)
Epri Pratiwi
Epri Pratiwi le 13 Août 2020
Commenté : Epri Pratiwi le 17 Août 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 commentaires
dpb
dpb le 13 Août 2020
Modifié(e) : dpb le 13 Août 2020
Use the 'MultiSelect','on' property when create the listbox...
Epri Pratiwi
Epri Pratiwi le 17 Août 2020
thanks!!!

Connectez-vous pour commenter.

Réponse acceptée

Prabhanjan Mentla
Prabhanjan Mentla le 17 Août 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.
  1 commentaire
Epri Pratiwi
Epri Pratiwi le 17 Août 2020
thanks! nice explanation :)

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Migrate GUIDE Apps dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by