Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

Why Does the Field Get Unexpectedly Deleted?

2 visualizaciones (últimos 30 días)
Rightia Rollmann
Rightia Rollmann el 16 de Mzo. de 2017
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
I have made a GUI in GUIDE. When myfun1 gets executed inside myfun2, suddenly field A gets deleted from variable handles.
WHY? What is the solution?
function myfun1(hObject, eventdata, handles)
handles.A = 1;
guidata(hObject, handles);
end
function myfun2(hObject, eventdata, handles)
myfun1(hObject, eventdata, handles);
end

Respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by