matlab警告名称不存在或不是目录; DoModal(); 静态文本框;编辑框;ID;职业与DOTA

matlab警告: 名称不存在或不是目录
问题:安装了一些Matlab的工具箱后,会把这些文件夹的目录加到了路径里面。如果我们把这些文件夹删除了。以后在每次打开Matlab的时提示“警告: 名称不存在或不是目录”
解决方法:打开MATLAB/R2014a/toolbox/local/pathdef.m 把不存在的目录删除。(我的目录在D:\toolbox\local下)


DoModal();
返回值
如果成功则返回IDOK或IDCANCEL;否则返回0或-1。
IDOK和IDCANCEL都是常量,它们指示用户是选择了OK按钮还是Cancel按钮。
如果返回的是IDCANCEL,可以调用函数Windows CommDlgExtendedError来确定是否发生了一个错误。
因为这个函数弹出来的是一个模态对话框,所以这个函数的一直等到用户点击“确定”或“取消”按钮时才返回。
CPropertySheet::DoModal
Displays a modal property sheet.
virtual INT_PTR DoModal();
virtual INT_PTR DoModal();
Return Value
IDOK or IDCANCEL if the function was successful; otherwise 0 or -1. If the property sheet has been established as a wizard (see SetWizardMode), DoModal returns either ID_WIZFINISH or IDCANCEL. 
Remarks
The return value corresponds to the ID of the control that closed the property sheet. After

你可能感兴趣的:(matlab警告名称不存在或不是目录; DoModal(); 静态文本框;编辑框;ID;职业与DOTA)