Busy Dialog

Version 1.1.0.0 (1,96 ko) par Kesh Ikuma
A modal dialog that displays a busy message during program execution.
1,2K téléchargements
Mise à jour 5 déc. 2008

Afficher la licence

H = BUSYBAR('message', property, value, property, value, ...) creates and displays a dialog box displaying 'message'. The handle to the waitbar figure is returned in H. Optional arguments property and value allow to set corresponding waitbar figure properties.

The dialog window is not closable, and it should be closed in the calling program by executing delete(H). As an "emergency" alternative, the dialog can be closed forcibly by pressing ctrl-c. To avoid such situation, the use of TRY-CATCH block is recommended (as shown below).

Example:

h = busybar('Please wait...','My Program');
try
% computation here %
catch
delete(h);
end
delete(h);

Citation pour cette source

Kesh Ikuma (2024). Busy Dialog (https://www.mathworks.com/matlabcentral/fileexchange/22324-busy-dialog), MATLAB Central File Exchange. Récupéré le .

Compatibilité avec les versions de MATLAB
Créé avec R2008b
Compatible avec toutes les versions
Plateformes compatibles
Windows macOS Linux
Catégories
En savoir plus sur Dialog Boxes dans Help Center et MATLAB Answers

Community Treasure Hunt

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

Start Hunting!
Version Publié le Notes de version
1.1.0.0

Corrected inconsistency in the help text.

1.0.0.0