How to apply validation on matlab M-file?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
I want to put a warning message box at the click of a close button in a matlab figure.
function closed(hObject, eventdata)
close(gcbf);
warndlg('are you sure you want to close','!! Warning !!')
%clear all;
%close;clear
end
however this warning dialog box appears when the window is closed! Where should I put this messagebox exactly!
0 Commenti
Risposta accettata
Kaustubha Govind
il 29 Apr 2011
Looks like you have your call to warndlg after "close(gcbf)". Try putting it above that.
1 Commento
Walter Roberson
il 29 Apr 2011
And use questiondlg() instead of warndlg(), as warndlg() does not give the user any way to chose between closing or not.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Environment and Settings in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!