Error with Guide opening

1 view (last 30 days)
Jason
Jason on 11 Dec 2014
Edited: Adam on 11 Dec 2014
What does this error mean.
I have a pushbutton 4 callback in my code mut not a CreatFn, so why is it complaining??
Error using feval
Undefined function 'pushbutton4_CreateFcn' for input arguments of type 'matlab.ui.control.UIControl'.
Error in gui_mainfcn (line 95)
feval(varargin{:});

Accepted Answer

Adam
Adam on 11 Dec 2014
Edited: Adam on 11 Dec 2014
It's complaining precisely because you don't have a create function.
If you go to the Property Inspector you will probably find that the CreateFcn field is not empty and has some automatically created function link in there for which it originally created the functyion body in your m-file. You can just delete that 'CreateFcn' entry of you want (as I tend top nowadays), but if you leave it there by default you must keep the CreateFcn in the .m file that is auto created.
  2 Comments
Jason
Jason on 11 Dec 2014
Thankyou for pointing this out. What use is this for push buttons anyway?
Adam
Adam on 11 Dec 2014
Edited: Adam on 11 Dec 2014
The default created function does some colour test based on the platform you are on and sets to the default colour of the system you are using if not 'PC'. I only ever use Windows so I decided I don't care about that!
You can put other code in there too if you want, but I've never found any situation in which I would want to. I initialise my ui control properties either in GUIDE itself or in the OpeningFcn.

Sign in to comment.

More Answers (0)

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!