How to acces to the code of a button

Hello, I have an inetrface matlab already functinnelle and I have no problem. Today when I want to change the code of a button or axis I can not. Can you tell me what the problem is. Thanks

3 Comments

Hi,
please i have a problem when i run my simulation by using my interface matlab(GUI interface).
The error is:
Error using waitforbuttonpress
waitforbuttonpress exit because target figure has been deleted
Error in drawColormap (line 118)
k = waitforbuttonpress;
Error in simul>pushbutton10_Callback (line 645)
drawColormap(handles);
Error in gui_mainfcn (line 95)
feval(varargin{:});
Error in simul (line 42)
gui_mainfcn(gui_State, varargin{:});
Error in @(hObject,eventdata)simul('pushbutton10_Callback',hObject,eventdata,guidata(hObject))
Error while evaluating DestroyedObject Callback
can you help me to solve this problem.
Somehow you are deleting the figure that the button is attached to.
Search your code for the words "clear" and "delete" and make sure it makes sense, and is needed, to call them when you do. Changes are, you did "clear all" in the function which blew away the essential "handles" structure variable.

Sign in to comment.

Answers (3)

How did you create the interface: programmatically, using GUIDE, or using App Designer? Check the appropriate section on this documentation page for instruction on how to code your app's behavior. If you have your app open in GUIDE or App Designer, you should be able to edit the callbacks the same way you would add code to a new callback.
If you have opened your UI's code in GUIDE or App Designer and cannot edit the code in those environments, please say a little more about what "I can not" means: do you receive an error (and if so what's the full text, everything in red of that error?), do you receive a warning (ditto, except everything in orange), etc.?
Hi, Despite i verifie "delete" and "clear", i still have the same problem.I have this error message: Error using waitforbuttonpress waitforbuttonpress exit because target figure has been deleted
Error in drawColormap (line 118) k = waitforbuttonpress;
Error in simul>pushbutton10_Callback (line 639) drawColormap(handles);
Error in gui_mainfcn (line 95) feval(varargin{:});
Error in simul (line 42) gui_mainfcn(gui_State, varargin{:});
Error in @(hObject,eventdata)simul('pushbutton10_Callback',hObject,eventdata,guidata(hObject))
Error while evaluating DestroyedObject Callback

3 Comments

We will need your code and your .fig file.
brahmi ibtissem
brahmi ibtissem on 20 Mar 2018
Edited: Stephen23 on 20 Mar 2018
Hi, This is the code of the interface and the figure. The problem appear when i click in pushbutton10 (Run simulation).
What is the code for drawMap and for drawColormap ?

Sign in to comment.

There are the code of drawmap and drawColormap. Thanks

Categories

Find more on Develop Apps Using App Designer in Help Center and File Exchange

Asked:

on 6 Mar 2018

Answered:

on 20 Mar 2018

Community Treasure Hunt

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

Start Hunting!