Error message: "Undefined function or variable 'loadfile_CreateFcn'"

2 views (last 30 days)
I get this error anytime I start my GUI.
"loadfile" is a button on the GUI. However, although it gives out the error, the GUI works fine. What is this "_*CreateFcn" and what do I need it for if apparently everything works well without it?

Answers (1)

Adam
Adam on 20 Feb 2017
CreateFcn is something that GUIDE creates automatically for you which I assume you have deleted. Find the button in GUIDE, go to its property inspector and delete the 'CreateFcn' line from it, or get it to recreate the pointless auto CreateFcn if you prefer.
I usually get rid of the CreateFcn from my ui controls, but it does require you to remove them from the properties of the control as well as deleting the function from the .m file.

Categories

Find more on Migrate GUIDE Apps in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!