Renamed Gui keeps referring to old .m file

조회 수: 2 (최근 30일)
Paul
Paul 2013년 9월 27일
답변: Walter Roberson 2018년 1월 25일
Hi, I made some some changes to a GUI and renamed it. In the .m file, I changed all occurrences of the old name to the new name. The GUI seems to function fine, but I get a number of errors upon opening the fig file which indicate that something is still trying to open/reference the old GUI or .m file. I get the same errors when filling in character fields when using the GUI. I get these errors:
??? Error using ==> struct2handle
Undefined function or method 'task'
for input arguments of type 'char'.
??? Error using ==> struct2handle
Error while evaluating uicontrol CreateFcn
The old GUI was called 'task.m' and 'task.fig'.
I can't find any references to the old name in the current GUIs .m file; how could it still be referencing the old files? What can I do about this?
Thanks in advance.
Paul

채택된 답변

Walter Roberson
Walter Roberson 2018년 1월 25일
The .fig that was saved by GUIDE has some anonymous functions stored in it that refer to the old routine names. Because they are stored at the .fig and not in the .m it is not always easy to find them. Once you do find them, you need to change the appropriate property of the .fig to refer to the new name, using the object browser that GUIDE provides.

추가 답변 (3개)

Pavel Jelinek
Pavel Jelinek 2018년 1월 16일
Hi, just run 'guide' in MATLAB command line and browse&open the renamed GUI. You must not follow 'Recently opened files'.

Image Analyst
Image Analyst 2018년 1월 16일
To save a GUIDE-based file with a new name, you must open the .fig file with GUIDE, then do File->SaveAs. It will create a new m-file with the new name and all the places in the m-file should be converted to the new name. But search the new m-file for the old name just in case, and replace any it didn't catch, like where you hard coded the old name into a string, like for example load('oldname.mat') which it wouldn't convert. If you don't need the old named file any more, you can now delete it.

bon sai
bon sai 2018년 1월 25일
In your m-file.m, please edit in header this line
gui_State = struct('gui_Name', 'new_file.fig', ...
because this line links m-file and fig-file together.

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by