how to programmatically close modal figure?

2 visualizaciones (últimos 30 días)
Shreeprasad Bhat
Shreeprasad Bhat el 18 de Abr. de 2017
Editada: Shreeprasad Bhat el 22 de Abr. de 2017
Hello,
I have set WindowStyle as modal for waitbar since I wan't to disable the main figure untill the waitbar is Finished. But I am unable to close waitbar, matlab hangs. How can I programmatically close the modal figure?
Thank you.

Respuesta aceptada

Shreeprasad Bhat
Shreeprasad Bhat el 22 de Abr. de 2017
Editada: Shreeprasad Bhat el 22 de Abr. de 2017
I found the solution.
Just before closing figure, set the window style to normal.
h=waitbar(0,'Please wait...','WindowStyle','modal');
.
.
.
set(h,'WindowStyle','normal');
close(h);

Más respuestas (0)

Categorías

Más información sobre Dialog Boxes en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by