GUIDE - guidata not working
Mostrar comentarios más antiguos
Dear all; I don't have much of experience with guide so what I'm asking might be a real silly issue... I have a simple GUI in which I have a drop down menu and a table. Depending of what is chosen in the drop down menu, the first column of the table should be updated with different entries (Data1, Data2...) so that the user can fill the second column with the corresponding values for Data1, Data2 and so on... Now, I'm having problems with shared variables. The variable I want to share is handles.StraightPipe as this is supposed to hold the values for the first column of the table (the scrips is not ready to accomplish this yet). Now, if I move handles.StraightPipe around I can see its output on the editor unless I move it after function varargout, if that happens nothing is written on the editor meaning that at this point the variable is not recognized anymore and I don't undestand why.
Any help would be really appreciated
Here's my script:
function varargout = testToolbox(varargin)
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name', mfilename, ...
'gui_Singleton', gui_Singleton, ...
'gui_OpeningFcn', @testToolbox_OpeningFcn, ...
'gui_OutputFcn', @testToolbox_OutputFcn, ...
'gui_LayoutFcn', [] , ...
'gui_Callback', []);
if nargin && ischar(varargin{1})
gui_State.gui_Callback = str2func(varargin{1});
end
if nargout
[varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});
else
gui_mainfcn(gui_State, varargin{:});
end
% End initialization code - DO NOT EDIT
% --- Executes just before testToolbox is made visible.
function testToolbox_OpeningFcn(hObject, eventdata, handles, varargin)
handles.StraightPipe = {'Straight_diameter';'Straight_length1';'Shape'};
handles.Turn = {'Turn Angle','Turn Diameter'};
handles.output = hObject;
guidata(hObject, handles);
% --- Outputs from this function are returned to the command line.
function varargout = testToolbox_OutputFcn(hObject, eventdata, handles)
varargout{1} = handles.output;
%--- Executes on selection change in popupmenu1.
function popupmenu1_Callback(hObject, eventdata, handles)
%something goes here
% --- Executes during object creation, after setting all properties.
function uitable1_CreateFcn(hObject, eventdata, handles)
set(hObject,'ColumnName','Value','RowName',{'a';'b';'c'},'Data',{blanks(0);blanks(0);blanks(0)});
2 comentarios
David Sanchez
el 26 de Jun. de 2013
what do you mean by " if I move handles.StraightPipe around " ?
Lorenzo
el 26 de Jun. de 2013
Respuestas (2)
Tom
el 26 de Jun. de 2013
It doesn't work because you're changing the handle itself, so the program can no only reference the controls. I'm guessing you should be doing something like this:
set(handles.StraightPipe,'String',{'Straight_diameter';'Straight_length1';'Shape'});
set(handles.Turn,'String'({'Turn Angle','Turn Diameter'});
4 comentarios
Tom
el 26 de Jun. de 2013
You should add the code I suggests after the guidata line on the OpeningFcn - don't touch anything before that.
Tom
el 26 de Jun. de 2013
Looking at your code, what are StraightPipe and StraightDiameter meant to be? I assumed they were uicontrols, but they seem to be called popupmenu1 and uitable1.
Lorenzo
el 26 de Jun. de 2013
Lorenzo
el 26 de Jun. de 2013
0 votos
4 comentarios
Tom
el 26 de Jun. de 2013
with your code as it is in the question, add the line:
disp(handles)
to the popupmenu1 callback, then click the popupmenu and select the option. What appears in the command line?
Lorenzo
el 26 de Jun. de 2013
Tom
el 26 de Jun. de 2013
I just tried it by creating a similar GUI and it works for me, so I can't say what the issue is. I would post the second part as a new question for clarity.
Lorenzo
el 26 de Jun. de 2013
Categorías
Más información sobre Variables en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!