Control ONE Pop Up Menu depending on ANOTHER Pop Up Menu
1 次查看(过去 30 天)
显示 更早的评论
Hi everyone!
Hope all is well.
I have two pop-up menus named Popup 11 and Popup 16 with different selections on each pop-up menus. I tried the following code where If i select 1 in Popup 11, it should automatically select another in Popup16.
However, I got the following error:
'Unrecognized method, property, or field 'value' for class 'matlab.ui.control.UIControl'.
The following is my code:
function popup11_Callback(hObject, eventdata, handles)
if isequal(hObject.value, 1)
handles.popup16.value = 1;
end
0 个评论
回答(1 个)
Geoff Hayes
2020-4-4
Miss B - which version of MATLAB are you using? On older versions, you may need to do something like
if get(hObject, 'Value') == 1
set(handles.popup16, 'Value', 1);
end
Else put a breakpoint at the first line of this function, launch your GUI and select an item in your popup11. When the debugger pauses at this line, check to see what the fields are for hObject. Does a value field exist?
9 个评论
Walter Roberson
2020-4-4
handles.popup16.Value = 30;
That is a request for entry #30 in popup16 to become the active entry.
What if there are fewer than 30 entries in popup16 at the time you make the request?
Setting the Value of a popup does not change the text displayed by a popup: it changes which of the text items are to be displayed.
If you wanted to change the text of the current selection to '-30-' then:
curpos = handles.popup16.Value;
handles.popup16.String{curpos} = '-30-';
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Interactive Control and Callbacks 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!