check if user pressed the button "OK" in msgbox
Mostra commenti meno recenti
I want to show some message to the user and then check if he proceed with pressing button or if he closed the dialogue. e.g.:
uiwait(msgbox('Please press OK.','something'))
if(user pressed button to continue)
%%do something
else
%%process aborted due the user action (he closed the msgbox)
end
Do you have any idea how to get this?
Thank you in advance!
Best regards,
goldenEyes
Risposta accettata
Più risposte (1)
TastyPastry
il 3 Nov 2015
Use questdlg instead.
h=questdlg('Please press OK','something','OK','OK');
switch h
case 'OK'
%'OK' code here
case ''
%abort code
otherwise
end
1 Commento
Valmir Sadiku
il 3 Nov 2015
Categorie
Scopri di più su App Building in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!