Terminating script after closing GUI window.
Ältere Kommentare anzeigen
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 Kommentare
Geoff Hayes
am 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
am 8 Apr. 2015
Ali
am 14 Jan. 2016
I have the same problem. Did you find out how to fix it Mark?
Antworten (1)
Walter Roberson
am 15 Jan. 2016
0 Stimmen
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()
Kategorien
Mehr zu Entering Commands finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!