GUI callback issue.
Show older comments
I want to check in GUI_2 if there is a stored value to update a value in GUI_1 without opening GUI_2. Is there a way to do this? Currently GUI_1 opens GUI_2 when it searches for the information.
Current Code:
function update_values_Callback(hObject, eventdata, handles)
dT = getappdata(deltaT, 'deltaT'):
if isempty(dT)
close(deltaT);
set(handles.deltaT, 'String', '') ;
elseif dT ~ 0
set(handles.deltaT, 'String', dT);
end
Accepted Answer
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!