Why did I receive these error messages? Unrecognized field name "angle1". angle1=180-handles.angle1; gui_mainfcn(gui_State, varargin{:}); feval(varargin{:});
22 views (last 30 days)
Show older comments
Answers (2)
Voss
on 3 May 2022
The code in pushbutton1_CreateFcn belongs in pushbutton1_CallbackFcn, most likely.
If you upload both the .m and the .fig file (using the paperclip icon), someone can run it and figure it out.
0 Comments
Walter Roberson
on 3 May 2022
What happens if edit3_Callback has not been executed yet, so you have not stored anything in handles.angle1 ?
1 Comment
Walter Roberson
on 3 May 2022
The handles structure does not exist while CreateFcn are being run. The OpenFcn is responsible for creating the handles structure after the figure is loaded, but the CreateFcn are run while the figure is loading. So although you store text5 handle into the handles structure during a CreateFcn, that gets overwritten.
You can use the CreateFcn callbacks to change the properties of the object they are creating, such as changing size or colour or initial string, but you cannot affect what gets saved in the handles structure from there. Changes to the handles structure should go at the end of OpenFcn
See Also
Categories
Find more on Software Development Tools 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!