How to change the CloseRequestFcn ??

12 Ansichten (letzte 30 Tage)
laila bsr
laila bsr am 10 Jul. 2015
Beantwortet: laila bsr am 10 Jul. 2015
I've tried to modify the CloseRequestFcn and add a questdlg but it doesn't work :/ Here is the code I used: *
function mymenu_CloseRequestFcn(obj, event, handles)
selection = questdlg('Save data?',...
'','Yes','No');
switch selection,
case 'Yes',
delete(hObject);
case 'No'
return
end*

Akzeptierte Antwort

laila bsr
laila bsr am 10 Jul. 2015
Hey I found a solution I added :
*set(handlesname,'CloseRequestFcn',@myrequest)*
and the code is :
function myrequest(obj, event, handles)
selection = questdlg('Save data?',...
'','Yes','No');
switch selection,
case 'Yes',
delete(hObject);
case 'No'
return
end*

Weitere Antworten (0)

Kategorien

Mehr zu App Building 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!

Translated by