Terminating script after closing GUI window.
Show older comments
Hi,
my problem is that when Im trying to close my GUI window through the close request function, the script is still going and it spits out an error, because the object it's trying to access is already deleted.
Is there a way to terminate the script in the closing function? In the main program you can do return; pretty easily but here I'm unsure.
I'm using delete(hObject) / delete(handles.figure1)
Could you please help me?
Thank you.
:)
3 Comments
Geoff Hayes
on 6 Apr 2015
Mark - what script are you trying to stop? Please include all code in your close request function as well as the full error message.
Mark
on 8 Apr 2015
Ali
on 14 Jan 2016
I have the same problem. Did you find out how to fix it Mark?
Answers (1)
Walter Roberson
on 15 Jan 2016
0 votes
No, callbacks have no direct way of instructing running functions to do anything. Running functions need to query whether they have been asked to do something. For example they could ask whether their figure handle is still valid.
If you are using R2014b or later you can use isgraphics() to determine whether something is a valid graphics handle. If you are using an earlier MATLAB then use ishandle()
Categories
Find more on Entering Commands 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!