Effacer les filtres
Effacer les filtres

How to make sure GUI is deleted before generating it again?

1 vue (au cours des 30 derniers jours)
hana
hana le 9 Juil 2012
I have a GUIDE made gui and I'd like to make sure that the figure of the gui is deleted along with all associated data (destroyed) before generating it again? (without having to manually close the gui before calling it again) Basically I want to return the gui to it's original state (all buttons return to off position.. etc.) possibly by taking action in the 'opening function'
thanks and any help is appreciated

Réponse acceptée

Jan
Jan le 9 Juil 2012
Modifié(e) : Jan le 9 Juil 2012
As far as I remember there is an "Open once only" flag in GUIDE, which include code to prevent opening multiple instances of one GUI. Please search in the menus again.
[EDITED] I've a link: http://www.mathworks.com/help/techdoc/creating_guis/f9-998364.html, and especially http://www.mathworks.com/help/techdoc/creating_guis/f9-998364.html#f9-998854. Unfortunately this feature must be selected initially. But you can create a new figure with this option and copy the created code to your existing project.
Actually you only need a unique tag for the figure and close existing figures in the OpeningFcn:
figTag = 'MyUniqueFigureTag';
oldFig = findobj(allchild(0), '-flat', 'Tag', figTag);
delete(oldFig);

Plus de réponses (3)

Luffy
Luffy le 9 Juil 2012
Modifié(e) : Walter Roberson le 9 Juil 2012
Use delete(name of ur gui) command.
A way to do it might be to put a new push button & write above command in that push button's call-back

hana
hana le 9 Juil 2012
I want this to happen automatically when the gui is generated.. maybe by adding some command in "varargout" or "opening" -function..., not through a push button?!

Walter Roberson
Walter Roberson le 9 Juil 2012

Catégories

En savoir plus sur Migrate GUIDE Apps dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by