MATLAB: GUI execution from .fig file

fig-fileguiguide

I am testing a GUI that I built. The GUI works fine when it is called from the Command Window or when I click the "Run" button from within the .m file. However, when I try to operate the GUI from the .fig file, only some of the features work. Is this normal? Can you run GUIs from the .fig file? So far, the only code for the GUI is related to a pushbutton:
function pushbuttonBrowse_Callback(hObject, eventdata, handles)
FileName = uigetfile({'*.xls';'*.xlsx';'*.csv';'*.dat'});
guidata(hObject, handles)
set(handles.txtbxSelectFile,'String',FileName)
The pushbutton calls data from a spreadsheet and then displays the file name in a textbox. When the code doesn't work, it only calls the data, but will not display the file name. Your help is greatly appreciated!

Best Answer

How do you run the GUI from the fig file?
  • If you have the fig file open in GUIDE and click the run icon (the green triangle icon) then it will run just the same as if you had typed F5 or clicked the green triangle icon in the text editor in MATLAB.
  • If you try to run it by double-clicking the .fig file in the "Current Folder" panel in MATLAB, then I've heard that you will have problems. (I never do it that way so I don't know but everyone says so.)