majian_aero
2008-09-19, 21:30
在gui中,使用getframe函数,现在此函数运行中使用exit按键
exit_button = questdlg('Exit now?','Exit program','Yes','No','Yes');
switch exit_button
case 'Yes'
closereq;
case 'No'
return;
end
当选择yes后,推出程序,但出现图形文件损坏的问题
如
??? Error using ==> capturescreen
Figure destroyed during getframe.
请教如何解决?
exit_button = questdlg('Exit now?','Exit program','Yes','No','Yes');
switch exit_button
case 'Yes'
closereq;
case 'No'
return;
end
当选择yes后,推出程序,但出现图形文件损坏的问题
如
??? Error using ==> capturescreen
Figure destroyed during getframe.
请教如何解决?