- 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.)
GUI execution from .fig file
1 回表示 (過去 30 日間)
古いコメントを表示
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!
0 件のコメント
採用された回答
Image Analyst
2012 年 4 月 6 日
How do you run the GUI from the fig file?
0 件のコメント
その他の回答 (2 件)
参考
カテゴリ
Help Center および File Exchange で Environment and Settings についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!