Mysterious GUI error messages
1 view (last 30 days)
Show older comments
All you GUI experts -
I have built a GUI using GUIDE to perform all the function layouts (it's all buttons and text entry windows) and added the functionality I want in the function callbacks of the .m file. As I code improvements I tend to save the new GUI .m file under a new name so I can retain previous iterations of the GUI should I want to revisit them. The original file name was ClusterGUI, and I have gone through several iterations and the current one is ClusterGUI4. When I call ClusterGUI4 or initiate it from GUIDE, I get the following red lines of death:
??? Undefined function or method 'ClusterGUI' for input arguments of type 'char'.
Error in ==> @(hObject,eventdata)ClusterGUI('figure1_CreateFcn',hObject,eventdata,guidata(hObject))
??? Error using ==> struct2handle
Error while evaluating figure CreateFcn
The GUI runs anyway, but I've never been able to get rid of this.
0 Comments
Accepted Answer
Walter Roberson
on 2 Mar 2012
You need to go through the Property Inspector to find the Callback property that mentions ClusterGUI
You could probably also do it mechanically,
badcallbacks = findall(0,'-regexp','callback','ClusterGUI[^4]');
3 Comments
David (degtusmc)
on 11 Jul 2013
Walter,
I am having the exact same problem that Jason was having. I tried going through the Property Inspector, but I could not find anything referring to the old GUI.
When I tried the mechanical approach I get the following:
Warning: Regular expression comparison is not supported for the 'CallbackObject' property: using ordinary comparison.
> In C:\Program Files\MATLAB\R2011b\toolbox\matlab\graphics\private\findobjhelper.p>findobjhelper at 31
In findobj at 45
In C:\Program Files\MATLAB\R2011b\toolbox\matlab\graphics\findall.p>findall at 38
How do I interpret the result? Also, just to be clear; you are suppose to type the "findall" command in the command window under the folder where the GUI is located, right?
Thank you for your time.
More Answers (2)
Tigersnooze
on 2 Mar 2012
This may be a dumb question, but are you also saving the new figure as 'ClusterGUI4.fig', or as applicable?
Image Analyst
on 2 Mar 2012
HOW did you save the new GUI? It's kind of particular how you do it. You can't just make copies in your operating system and rename them to the new name - never do that. It looks like you probably did this. The best way to create a new app based on an old one is to not to do anything in the operating system, and instead to open the original fig file in GUIDE and then do a "save as" your new app name ClusterGUI4.fig. This will then automatically create a ClusterGUI4.m file, and then all the obscure references in Property Inspector and the m file should be consistent and working fine.
4 Comments
Image Analyst
on 5 Mar 2012
That is the actual figure itself, which is basically the background upon which you place all controls (such as axes, buttons, sliders, etc.). It has a "Name" property, which is what shows up in the title bar, and a "tag" property which is really the important property and is what it's called by when you look at the handles structure.
See Also
Categories
Find more on Specifying Target for Graphics Output in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!