Passing handles through guidata

2 次查看(过去 30 天)
Hello all,
I am having an issue passing data through callbacks in my interface. What is happening is when I press a button on my interface, it changes two handle subvariables. What we see is:
handles.stopFlag = 1;
handles.running = 0;
guidata(hObject, handles);
Above is an excerpt from the end of the my button callback function. Usually this button is pressed when a while loop is running in another function. When the function returns, it is always returning after a drawnow function followed by a guidata(hObject,handles) function as seen below.
drawnow;
guidata(hObject,handles);
So my issue is that after the button is pressed and in the button callback, the variables in the handle structure are correctly valued: handles.stopFlag = 1 and handles.running = 0, but when I enter back into the while loop, these value are not see by the program because the guidata(hObject,handles) is overwriting this change before it can take effect.
Now I am not quite sure what to do here because I don't have much experience with GUIs or GUIDE but I have been trying to exclude the guidata function or only use update using certain parts of the handles structure.
Does anyone have any idea for me to try out? All are appreciated! Thanks!

采纳的回答

Walter Roberson
Walter Roberson 2013-2-15
Instead of
drawnow;
guidata(hObject,handles);
use
drawnow;
handles = guidata(hObject);
  1 个评论
Kjell
Kjell 2013-2-18
That worked perfectly. Thank you for your help!!! That is so much better of a solution than using global variables :P

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Interactive Control and Callbacks 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by