GUI error: 'Undefined function 'xxx' for input type 'struct'
2 ビュー (過去 30 日間)
古いコメントを表示
Hi all, I recently started coming across the above error when running my GUI. the 'xxx' is the name of an old .m-file linked to the GUI, but I have since renamed and resaved the GUI properly and removed all occurrences of 'xxx' in any related m-files.
Since the error doesn't indicate where the reference to the old .m-file is made or at what point it poses a problem, I'm having trouble solving the issue. What is striking is that this has only started happening today, even though I've been using that same GUI daily for the past three months without any problems. The GUI still works fine, but it would be nice to stop MATLAB throwing these errors in my face everytime I click a button.
Any help would be greatly appreciated. I'm especially wondering where it could actually be referencing the old 'xxx' and where I would be able to change this manually.
Thanks.
0 件のコメント
回答 (1 件)
Walter Roberson
2014 年 3 月 25 日
for h = findall(0, '-regexp','Callback','xxx')
disp(get(h, 'Tag'))
end
should display the tags of all objects that include "xxx" in the callback string.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Migrate GUIDE Apps についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!