Force quiet a callback function on Appdesigner?
Mostra commenti meno recenti
I am using Matlab Appdesigner and want to be able to force quiet any callback function and any subfunction with in that callback function. I added a push button to my app named Cancel and put the following code with in the sub-function of the Excute callback function to stop it when I press cancel. However it takes time to quit the excustion of the callback function (Excute) because it doesn't start quiting untill it reaches out to the line where this code is at in the sub-function.
%Check for Cancel button press
if app.CancelButton.Value == true
app.CancelButton.Value = false; % To reactive the stop button
return
end
Is there any way to add a Canceling pushbutton to the app which overwrite everything as Ctrl-C does in the Command window?
8 Commenti
Rik
il 17 Nov 2021
Not as far as I'm aware, but you could consider calling this check more often in your code. This might have a performance penalty.
Faez Alkadi
il 17 Nov 2021
Rik
il 18 Nov 2021
Working from memory, so maybe this doesn't work at all: you could look into using a timer object. I believe you can stop execution of the function by deleting the object.
Faez Alkadi
il 18 Nov 2021
Modificato: Faez Alkadi
il 18 Nov 2021
Rik
il 18 Nov 2021
To find out I would have to look up the documentation and maybe google something like 'stop timer function matlab'. Did you try either of those?
Faez Alkadi
il 18 Nov 2021
Rik
il 18 Nov 2021
I never use AppDesigner or timer objects myself either. What code did you try?
Faez Alkadi
il 18 Nov 2021
Risposte (0)
Categorie
Scopri di più su Startup and Shutdown in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!