Pop-Up menu help

4 views (last 30 days)
vlad vladut
vlad vladut on 28 Feb 2015
Commented: vlad vladut on 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

Accepted Answer

Geoff Hayes
Geoff Hayes on 1 Mar 2015
Edited: Geoff Hayes on 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 Comment
vlad vladut
vlad vladut on 1 Mar 2015
Perfect!!!! ty very much!!! works nicely

Sign in to comment.

More Answers (0)

Categories

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

Community Treasure Hunt

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

Start Hunting!