Ältere Kommentare anzeigen
hi there, how to close all the messagebox automatically using matlab code.
1 Kommentar
Jan
am 3 Mai 2012
What does "automatically" mean? After a certain period of time? Would closing all figure windows solve your problem, or do you need to keep all non-messagebox figures open?
Akzeptierte Antwort
Weitere Antworten (2)
Ilham Hardy
am 3 Mai 2012
close all ??
Asal Barak
am 10 Dez. 2013
0 Stimmen
h=msgbox('Are you sure you want to delete this file?'); pause(2) close(h)
After 2 seconds your box will be closed. You can change the time to whatever you are intending to.
2 Kommentare
Image Analyst
am 10 Dez. 2013
Unlike using a timer, this pause method will lock up the program during that time so the user will not be able to interact with anything else. It will not even continue if the user clicks OK immediately - it will still have to wait for the pause to finish.
Asal Barak
am 12 Dez. 2013
Thank you
Kategorien
Mehr zu Startup and Shutdown 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!