How to change the CloseRequestFcn ??
7 views (last 30 days)
Show older comments
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*
0 Comments
Accepted Answer
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!