Link two pushbutton_Callback (hObject, eventdata, handles)
Show older comments
Hello everyone!
I need to link two different Pushbotton_Calback(hObject, eventdata, handles) in two different file as below:
in myGUI.m:
function varargout = myGUI(varargin)
% some code here and then:
function pushbutton_load_Callback(hObject, eventdata, handles)
% some code here
and
in search.m
function pushbutton_ok_Callback(hObject, eventdata, handles)
% some code here
what i want is to link pushbutton_ok with pushbutton_load as i push pushbutton_ok, in search.m then pushbutton_load in myGUI.m is also be pushed.
I would be happy if anyone could help!
Thank you!
Accepted Answer
More Answers (0)
Categories
Find more on Startup and Shutdown 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!