Why did I receive these error messages? Unrecognized field name "angle1". angle1=180-handles.angle1; gui_mainfcn(gui_State, varargin{:}); feval(varargin{:});
22 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Respuestas (2)
Voss
el 3 de Mayo de 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 comentarios
Walter Roberson
el 3 de Mayo de 2022
What happens if edit3_Callback has not been executed yet, so you have not stored anything in handles.angle1 ?
1 comentario
Walter Roberson
el 3 de Mayo de 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
Ver también
Categorías
Más información sobre Software Development Tools en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!