Sep 9, 2005 #1 milbos Electrical Joined Sep 9, 2005 Messages 2 Location SI Hi My question is: I have two GUI's for example delo.fig (delo.m) and dodatek.fig (dodatek.m). First I start GUI delo.fig and I want to execute GUI dodatek.fig when I press button in GUI delo.fig. So, how can I call one GUI from another? Thank you
Hi My question is: I have two GUI's for example delo.fig (delo.m) and dodatek.fig (dodatek.m). First I start GUI delo.fig and I want to execute GUI dodatek.fig when I press button in GUI delo.fig. So, how can I call one GUI from another? Thank you
Sep 9, 2005 #2 MikeyP Aerospace Joined Mar 5, 2002 Messages 940 Location GB Set the callback function of the button in the first figure to run the second figure. eg % "handle" is the handle of the button in delo.m set(handle, 'CallBack', 'dodatek;'); M -- Dr Michael F Platten Upvote 0 Downvote
Set the callback function of the button in the first figure to run the second figure. eg % "handle" is the handle of the button in delo.m set(handle, 'CallBack', 'dodatek;'); M -- Dr Michael F Platten