deployed app exit when GUI appeared

3 visualizaciones (últimos 30 días)
raym
raym el 27 de Dic. de 2020
Editada: raym el 27 de Dic. de 2020
Hi,
I have a function that shows a GUI with buttons and callbacks.
When running in matlab, it create the gui figure and release the command window, but callback still works when I click on GUI.
However, when I compiled it into exe, the GUI appears and immediately go sway and program exited.
Is there a way to hold the gui?
Thanks.

Respuesta aceptada

Walter Roberson
Walter Roberson el 27 de Dic. de 2020
Your flow of control does not waitfor() or uiwait() after creating the graphics, so you get to the bottom of the initialization loop and exit the program.
When you do not compile, then the graphics objects all keep existing because you have the keyboard to go back to for more interaction.
If you are using GUIDE, then look in the code generated for the GUI OpenFcn callback, and you will see a commented-out call to wait for the graphics window to close. Remove the comment marker so that wait becomes active.
  1 comentario
raym
raym el 27 de Dic. de 2020
Editada: raym el 27 de Dic. de 2020
Dear Roberson,
I did not used the GUIDE, but only a f = figure(...).
I add a bottom line
uiwait(f)
and found that the GUI is now stablized.
But when I test a simple function with only one line:
function test
f = figure;
end
I found that there is no problem with this function. The figure is stable, so the uiwait is not necessary from this point.
What could be the discrepancy between such similar scenarios?
Thanks.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Migrate GUIDE Apps en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by