How to exit a GUI program?
44 次查看(过去 30 天)
显示 更早的评论
If I exit a GUI code when it is running,it will still be running in the background or maybe some errors will occur. I want to know whether there is a function that can completely exit the program and kill all errors.
0 个评论
采纳的回答
Shashank Prasanna
2013-2-27
>> close all force
Well depends on what you want exactly, but after exist if you feel there are some hidden figures or some reason to think there is something open, the above command forces them to close. Use it when the CloseRequestFcn has been modified for example.
0 个评论
更多回答(1 个)
Sean de Wolski
2013-2-27
Well to insure that there aren't errors, put in conditionals before doing something that would error.
For example: if you have a function that wants to set a textbox's string to 'Done' at the end:
h = handle to textbox
if ishandle(h) %Does thes the textbox still exist?
%Yup
set(h,'String','Done');
else
%Figure was closed!
return
end
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Environment and Settings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!