Pop-Up menu help

19 vues (au cours des 30 derniers jours)
vlad vladut
vlad vladut le 28 Fév 2015
Commenté : vlad vladut le 1 Mar 2015
I have 5 pop-up menus with different Strings( for example 10 20 30)...What is the code for a PushBotton to get me the number i choose in each pop-up menu and do me a simple operation...for example to mupltiply...I dont know if u understand what i mean....i select in each pop-up different numbers and then it calculates me and if i change a pop-up menu to a different number or any of them after i press calculate to do it right

Réponse acceptée

Geoff Hayes
Geoff Hayes le 1 Mar 2015
Modifié(e) : Geoff Hayes le 1 Mar 2015
Vlad - assuming that you are using GUIDE to create your GUI, suppose your five popup menus are named popupmenu1, popupmenu2,..., popupmenu5. If we assume that only numeric data has populated each of your popup menus, then the callback for your push button would look something like
function pushbutton1_Callback(hObject, eventdata, handles)
% get the list of items in the first popup menu
menu1List = get(handles.popupmenu1,'String');
% get the selected item in the first popup menu and convert to a number
menu1Item = str2num(menu1List{get(handles.popupmenu1,'Value')});
You would then just repeat the above code for the remaining four popup menus and do whatever operation you need against them.
  1 commentaire
vlad vladut
vlad vladut le 1 Mar 2015
Perfect!!!! ty very much!!! works nicely

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur App Building dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by