Error message: "Undefined function or variable 'loadfile_CreateFcn'"
1 次查看(过去 30 天)
显示 更早的评论
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?
0 个评论
回答(1 个)
Adam
2017-2-20
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.