How can we achieve interfacing of two GUI's?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Dear Sir/Madam Here i am trying to do interfacing of two gui's. I have made several gui's. My need is i.e if i click some push button it should open some other gui. Please tell me how to use setappdata and add any sample code. Please find the answer.
0 comentarios
Respuestas (2)
Mark Whirdy
el 4 de Dic. de 2012
Editada: Mark Whirdy
el 4 de Dic. de 2012
if you just put the name of gui2 inside the callback of the pushbutton of gui1, then gui2 does not open?
gui1_mybutton_callback(hobject,evnts,handles)
gui2;
use setappdata to pass data for more complex interation then
3 comentarios
Mark Whirdy
el 4 de Dic. de 2012
Editada: Mark Whirdy
el 4 de Dic. de 2012
Its difficult to provide sample code without a more specific question where you provide code of your own which I could adapt my example code to. I think we're at the stage of doing some initial background reading. Broadly, you need to work with the handle to gui2 (as launched from the callback above), and then be using get() & set(), & getappdata() & setappdata() to manipulate the object properties of both gui's and store any data directly to the root for sharing as appropriate.
e.g.
setappdata(0,'my_variable',23) % set variable "my_variable" with value 23 to the root [i.e. 0 indicates the root]
Structures are handy in some cases:
mystruct.myval = 23;
setappdata(0,'mystruct',mystruct) ;
clear mystruct
mystruct = getappdata(0,'mystruct') ;
The links below will help further:
Image Analyst
el 4 de Dic. de 2012
It's also not clear if you want one GUI to actually control another GUI, like change images, text, and plots on it, or if you just want to launch the second GUI, have the user interact with it, and then return values back to the first GUI. Which is it?
1 comentario
Ver también
Categorías
Más información sobre Migrate GUIDE Apps en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!