How can I avoid displaying "0" in my text box when cancel is pressed using UIGETDIR
2 ビュー (過去 30 日間)
古いコメントを表示
Hi,
The dialog box UIGETDIR returns either the selected folder name as a string if OK is pressed or the number 0 if Cancel is pressed. In my application I have an edit box with a callback function that calls UIGETDIR and then displays the selected folder string, something like this:
editboxhandle.callbackfcn = @set(editboxhandle,'String',uigetdir);
However, when Cancel is pressed, "0" is displayed in my edit box but while I would like the string to be empty in such case. I'm am restricted to a singel expression callback like the one above. How can I solve this?
0 件のコメント
回答 (1 件)
Azzi Abdelmalek
2014 年 8 月 3 日
k=uigetdir;
if k==0;
k=[];
end
3 件のコメント
Azzi Abdelmalek
2014 年 8 月 3 日
編集済み: Azzi Abdelmalek
2014 年 8 月 3 日
Why do you need to do it in a single line?
k=uigetdir;
if k==0;
k=[];
end
editboxhandle.callbackfcn = @char(set(editboxhandle,'String',k))
参考
カテゴリ
Help Center および File Exchange で Dialog Boxes についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!