Mysterious GUI error messages

4 views (last 30 days)
Jason
Jason on 2 Mar 2012
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.

Accepted Answer

Walter Roberson
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
Jason
Jason on 2 Mar 2012
That fixed it! I found an old filename buried somewhere it shouldn't have been.
David (degtusmc)
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.

Sign in to comment.

More Answers (2)

Tigersnooze
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?
  1 Comment
Jason
Jason on 2 Mar 2012
Not a dumb question at all, and yes I am. The name ClusterGUI does not appear anywhere in the newer ClusterGUI4 file - all instances of the name in the file itself are ClusterGUI4.

Sign in to comment.


Image Analyst
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
Jason
Jason on 5 Mar 2012
Not sure what you'd call it, but when a brand-new figure is created in GUIDE, the first thing that appears is a grid upon which all other GUI elements are placed. That object still had the name of the first iteration of my GUI, and once that was renamed the annoying error message disappeared. In the object browser it's at the top of the list as figure(ClusterGUI4).
Image Analyst
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.

Sign in to comment.

Categories

Find more on Migrate GUIDE Apps 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!