Clear Filters
Clear Filters

run .m without .fig (GUI)

2 views (last 30 days)
Ahmed Nabil
Ahmed Nabil on 23 Jul 2016
Commented: Geoff Hayes on 23 Jul 2016
Hi, it's simple question..
any hope to run .m file without using .fig file and GUI works fine ? OR should i have both ?

Accepted Answer

Geoff Hayes
Geoff Hayes on 23 Jul 2016
Ahmed - if the GUI was created using GUIDE, then you need both the m file and the figure (.fig) file to be able to run the GUI.
  4 Comments
Ahmed Nabil
Ahmed Nabil on 23 Jul 2016
ok, i tried to run it..
but gives me an error
Error using get
There is no Behavior property on the UIControl class.
Error in rhinoGui_final>rhinoGui_final_LayoutFcn (line 1509)
'Behavior',get(0,'defaultuicontrolBehavior'),...
Error in rhinoGui_final>gui_mainfcn (line 2469)
gui_hFigure = feval(gui_State.gui_LayoutFcn, gui_SingletonOpt);
Error in rhinoGui_final (line 42)
gui_mainfcn(gui_State, varargin{:});Error using get
There is no Behavior property on the UIControl class.
Error in rhinoGui_final>rhinoGui_final_LayoutFcn (line 1509)
'Behavior',get(0,'defaultuicontrolBehavior'),...
Error in rhinoGui_final>gui_mainfcn (line 2469)
gui_hFigure = feval(gui_State.gui_LayoutFcn, gui_SingletonOpt);
Error in rhinoGui_final (line 42)
gui_mainfcn(gui_State, varargin{:});
right click on the file and choose run..
or did i missed something ? am still beginner
p/s: using matlab 2016a
Geoff Hayes
Geoff Hayes on 23 Jul 2016
Perhaps the Behavior property has been removed from 2016a (I am using R2014a). You can try commenting out or deleting all the lines that refer to this property in the rhinoGui_final_LayoutFcn function.

Sign in to comment.

More Answers (0)

Categories

Find more on Migrate GUIDE Apps in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!