Passing data from custom modal dialog box to main GUI

1 Ansicht (letzte 30 Tage)
Joel Marchand
Joel Marchand am 6 Feb. 2012
I am trying to pass data from a modal dialog box to a main GUI. When I run the code at 'full speed' as interpreted code, the main GUI tells me that a specific variable (handles.cancelPT) is not defined (assigned to the main GUI handles structure by the modal dialog box). When I run in debug mode (step by step) no error occurs.
Relevant main GUI code:
function performanceandthicknessmenu_Callback(hObject, eventdata, handles)
% Call dialog box for entering data to process; Wait for dialog box to close.
modelbyperformanceandthicknessdialog; uiwait(gcf);
if handles.cancelPT == true
msgbox('Operation cancelled')
elseif handles.cancelPT == false
% Executes when there is some data to calculate when optimizing by
% performance and thickness
handles.frequencyGHz
handles.loss
handles.minimumThicknessInches
handles.maximumThicknessInches
handles.angleOfIncidenceDegrees
handles.polarization
handles.absorptionMode
end
guidata(hObject, handles);
Relevant modal dialog box code:
function cancelpushbutton_Callback(hObject, eventdata, handles)
handles.cancelPT = true; % Canceled
close(gcf);
% Pass handles data on to engineering part chooser
guidata(findobj('tag', 'engineeringpartchooser'), handles);
Any pointers would be appreciated.
  1 Kommentar
Jan
Jan am 6 Feb. 2012
Please format the code as explained in the "Markup help" link.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 6 Feb. 2012
You should not be counting on gcf to refer to the correct object.
In the cancel routine, instead of
close(gcf)
use
close(ancestor(hObject,'figure'))
Your modal dialog modelbyperformanceandthicknessdialog should not allow the calling routine to resume until the dialog is closed. The modal routine itself should do the uiwait(), not your calling code.

Weitere Antworten (0)

Kategorien

Mehr zu Environment and Settings finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by