How to close UIAlert in AppDesigner by command?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
ZHIQIANG LIU
am 27 Jun. 2020
Kommentiert: ZHIQIANG LIU
am 27 Jun. 2020
I want to show some prompt message before dealing with a large data, after that I want to close it automatically without user's click action.
How to do that?
Thanks!
0 Kommentare
Akzeptierte Antwort
Rohith Nomula
am 27 Jun. 2020
You can use message box tool in the base code itself
h = msgbox('Please Wait ...you are dealing with large data', 'Processing');
onCleanup(@()delete(h));
Under the condition when you are dealing with large data add this code
The onCleanup command here deletes the message box.
3 Kommentare
Rohith Nomula
am 27 Jun. 2020
However all the tools like msgbox(), errordlg(), warndlg() and uialert() comes with different sorts of issues
As of R2020a MATLAB doesn't offer any customization for these tools default or existing UI.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Startup and Shutdown finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!