Error running GUI outside of GUIDE
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi,
I designed a UI using GUIDE, such that the push button allows me to select a file from a folder and a list box displays the name of the file. I proceeded to run it (run figure in GUIDE) and it worked.
The issue here is when I close GUIDE and open the .fig file. In this case, it returns the error shown:
??? Reference to non-existent field 'listbox3'.
Error in ==> mlp_gui>sel_out_dat_Callback at 84
set(handles.listbox3,'String',handles.outputdata)
Error in ==> gui_mainfcn at 96
feval(varargin{:});
Error in ==> mlp_gui at 42
gui_mainfcn(gui_State, varargin{:});
Error in ==>
@(hObject,eventdata)mlp_gui('sel_out_dat_Callback',hObject,eventdata,guidata(hObject))
??? Error while evaluating uicontrol Callback
My guess for this error is that the handle for the listbox was not created in the case where I operated the UI outside of GUIDE?
Any suggestions to correct this will be helpful.
Thanks!
0 Kommentare
Antworten (2)
David Sanchez
am 9 Jul. 2013
Are you trying to run the m-file associated to the fig-file? You have to run the .m file in order to run your GUI.
( Right click on m-file -> run )
( Type in command window the name of the m-file (no-extension needed) )
1 Kommentar
Ravi
am 9 Jul. 2013
Click GUI icon on toolbar or Type GUIDE in Command Window... Then GUI window opens.... Click Open Existing GUI... Open the GUI created by you... Then RUN
Siehe auch
Kategorien
Mehr zu Migrate GUIDE Apps finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!