Why did I receive these error messages? Unrecognized field name "angle1". angle1=180-handles.angle1; gui_mainfcn(gui_State, varargin{:}); feval(varargin{:});
22 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Réponses (2)
Voss
le 3 Mai 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 commentaires
Walter Roberson
le 3 Mai 2022
What happens if edit3_Callback has not been executed yet, so you have not stored anything in handles.angle1 ?
1 commentaire
Walter Roberson
le 3 Mai 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
Voir également
Catégories
En savoir plus sur Software Development Tools dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!